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

Unified Diff: Source/web/ApplicationCacheHost.cpp

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/testing/runner/WebUserMediaClientMock.cpp ('k') | Source/web/ApplicationCacheHostInternal.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ApplicationCacheHost.cpp
diff --git a/Source/web/ApplicationCacheHost.cpp b/Source/web/ApplicationCacheHost.cpp
index edf9b2dc90b3727d21423522ecb3d98b93e609d1..2d545642853ef3e5f62b84fe603ee29a23d0eb83 100644
--- a/Source/web/ApplicationCacheHost.cpp
+++ b/Source/web/ApplicationCacheHost.cpp
@@ -51,7 +51,7 @@
#include "platform/exported/WrappedResourceResponse.h"
#include "weborigin/SecurityOrigin.h"
-using namespace WebKit;
+using namespace blink;
namespace WebCore {
@@ -174,7 +174,7 @@ ApplicationCacheHost::CacheInfo ApplicationCacheHost::applicationCacheInfo()
if (!m_internal)
return CacheInfo(KURL(), 0, 0, 0);
- WebKit::WebApplicationCacheHost::CacheInfo webInfo;
+ blink::WebApplicationCacheHost::CacheInfo webInfo;
m_internal->m_outerHost->getAssociatedCacheInfo(&webInfo);
return CacheInfo(webInfo.manifestURL, webInfo.creationTime, webInfo.updateTime, webInfo.totalSize);
}
@@ -184,7 +184,7 @@ void ApplicationCacheHost::fillResourceList(ResourceInfoList* resources)
if (!m_internal)
return;
- WebKit::WebVector<WebKit::WebApplicationCacheHost::ResourceInfo> webResources;
+ blink::WebVector<blink::WebApplicationCacheHost::ResourceInfo> webResources;
m_internal->m_outerHost->getResourceList(&webResources);
for (size_t i = 0; i < webResources.size(); ++i) {
resources->append(ResourceInfo(
« no previous file with comments | « Source/testing/runner/WebUserMediaClientMock.cpp ('k') | Source/web/ApplicationCacheHostInternal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698