Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1054)

Unified Diff: Source/web/ApplicationCacheHostInternal.h

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/ApplicationCacheHost.cpp ('k') | Source/web/AssertMatchingEnums.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ApplicationCacheHostInternal.h
diff --git a/Source/web/ApplicationCacheHostInternal.h b/Source/web/ApplicationCacheHostInternal.h
index de98089ce311573b04e99f0f899177c0368b3ee0..25956aa9870e3ae2af34c3161dc1509aeefb296d 100644
--- a/Source/web/ApplicationCacheHostInternal.h
+++ b/Source/web/ApplicationCacheHostInternal.h
@@ -39,12 +39,12 @@
namespace WebCore {
-class ApplicationCacheHostInternal : public WebKit::WebApplicationCacheHostClient {
+class ApplicationCacheHostInternal : public blink::WebApplicationCacheHostClient {
public:
ApplicationCacheHostInternal(ApplicationCacheHost* host)
: m_innerHost(host)
{
- WebKit::WebFrameImpl* webFrame = WebKit::WebFrameImpl::fromFrame(host->m_documentLoader->frame());
+ blink::WebFrameImpl* webFrame = blink::WebFrameImpl::fromFrame(host->m_documentLoader->frame());
ASSERT(webFrame);
m_outerHost = adoptPtr(webFrame->client()->createApplicationCacheHost(webFrame, this));
}
@@ -54,17 +54,17 @@ public:
// FIXME: Prod the inspector to update it's notion of what cache the page is using.
}
- virtual void notifyEventListener(WebKit::WebApplicationCacheHost::EventID eventID)
+ virtual void notifyEventListener(blink::WebApplicationCacheHost::EventID eventID)
{
m_innerHost->notifyApplicationCache(static_cast<ApplicationCacheHost::EventID>(eventID), 0, 0);
}
- virtual void notifyProgressEventListener(const WebKit::WebURL&, int progressTotal, int progressDone)
+ virtual void notifyProgressEventListener(const blink::WebURL&, int progressTotal, int progressDone)
{
m_innerHost->notifyApplicationCache(ApplicationCacheHost::PROGRESS_EVENT, progressTotal, progressDone);
}
- static WebKit::WebApplicationCacheHost* toWebApplicationCacheHost(ApplicationCacheHost* innerHost)
+ static blink::WebApplicationCacheHost* toWebApplicationCacheHost(ApplicationCacheHost* innerHost)
{
if (innerHost && innerHost->m_internal)
return innerHost->m_internal->m_outerHost.get();
@@ -74,7 +74,7 @@ public:
private:
friend class ApplicationCacheHost;
ApplicationCacheHost* m_innerHost;
- OwnPtr<WebKit::WebApplicationCacheHost> m_outerHost;
+ OwnPtr<blink::WebApplicationCacheHost> m_outerHost;
};
}
« no previous file with comments | « Source/web/ApplicationCacheHost.cpp ('k') | Source/web/AssertMatchingEnums.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698