Changeset 57341 in webkit


Ignore:
Timestamp:
Apr 9, 2010 9:38:57 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-09 Jochen Eisinger <jochen@chromium.org>

Reviewed by Darin Fisher.

Complete move of createApplicationCacheHost from WebKitClient to WebFrameClient.
https://bugs.webkit.org/show_bug.cgi?id=37330

  • public/WebApplicationCacheHost.h:
  • public/WebKitClient.h:
  • src/ApplicationCacheHostInternal.h: (WebCore::ApplicationCacheHostInternal::ApplicationCacheHostInternal):
Location:
trunk/WebKit/chromium
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r57335 r57341  
     12010-04-09  Jochen Eisinger  <jochen@chromium.org>
     2
     3        Reviewed by Darin Fisher.
     4
     5        Complete move of createApplicationCacheHost from WebKitClient to WebFrameClient.
     6        https://bugs.webkit.org/show_bug.cgi?id=37330
     7
     8        * public/WebApplicationCacheHost.h:
     9        * public/WebKitClient.h:
     10        * src/ApplicationCacheHostInternal.h:
     11        (WebCore::ApplicationCacheHostInternal::ApplicationCacheHostInternal):
     12
    1132010-04-09  Marcus Bulach  <bulach@chromium.org>
    214
  • trunk/WebKit/chromium/public/WebApplicationCacheHost.h

    r50667 r57341  
    11/*
    2  * Copyright (C) 2009 Google Inc. All rights reserved.
     2 * Copyright (C) 2010 Google Inc. All rights reserved.
    33 *
    44 * Redistribution and use in source and binary forms, with or without
     
    4343
    4444// This interface is used by webkit to call out to the embedder. Webkit uses
    45 // the WebKitClient::createApplicationCacheHost method to create instances,
     45// the WebFrameClient::createApplicationCacheHost method to create instances,
    4646// and calls delete when the instance is no longer needed.
    4747class WebApplicationCacheHost {
  • trunk/WebKit/chromium/public/WebKitClient.h

    r56713 r57341  
    11/*
    2  * Copyright (C) 2009 Google Inc. All rights reserved.
     2 * Copyright (C) 2010 Google Inc. All rights reserved.
    33 *
    44 * Redistribution and use in source and binary forms, with or without
     
    8080
    8181
    82     // Application Cache --------------------------------------------
    83 
    84     // May return null if the process type doesn't involve appcaching.
    85     virtual WebApplicationCacheHost* createApplicationCacheHost(WebApplicationCacheHostClient*) { return 0; }
    86 
    87 
    8882    // DOM Storage --------------------------------------------------
    8983
  • trunk/WebKit/chromium/src/ApplicationCacheHostInternal.h

    r57197 r57341  
    5151        ASSERT(webFrame);
    5252        m_outerHost.set(webFrame->client()->createApplicationCacheHost(webFrame, this));
    53         if (!m_outerHost.get())
    54             m_outerHost.set(WebKit::webKitClient()->createApplicationCacheHost(this));
    5553    }
    5654
Note: See TracChangeset for help on using the changeset viewer.