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

Unified Diff: Source/modules/serviceworkers/CacheStorage.h

Issue 461163002: Cleanup namespace usage in Source/core/modules/[mediasource/* to websockets/*] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 months 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
Index: Source/modules/serviceworkers/CacheStorage.h
diff --git a/Source/modules/serviceworkers/CacheStorage.h b/Source/modules/serviceworkers/CacheStorage.h
index e0a40d4106dd11a72d253a1e18e04daf10e44b86..2c13a5b0a4a837ddefbdf37ff171152dbd8309af 100644
--- a/Source/modules/serviceworkers/CacheStorage.h
+++ b/Source/modules/serviceworkers/CacheStorage.h
@@ -20,7 +20,7 @@ class WebServiceWorkerCacheStorage;
class CacheStorage FINAL : public RefCountedWillBeGarbageCollected<CacheStorage>, public ScriptWrappable {
WTF_MAKE_NONCOPYABLE(CacheStorage);
public:
- static PassRefPtrWillBeRawPtr<CacheStorage> create(blink::WebServiceWorkerCacheStorage*);
+ static PassRefPtrWillBeRawPtr<CacheStorage> create(WebServiceWorkerCacheStorage*);
ScriptPromise get(ScriptState*, const String& cacheName);
ScriptPromise has(ScriptState*, const String& cacheName);
@@ -31,9 +31,9 @@ public:
void trace(Visitor*) { }
private:
- explicit CacheStorage(blink::WebServiceWorkerCacheStorage*);
+ explicit CacheStorage(WebServiceWorkerCacheStorage*);
- blink::WebServiceWorkerCacheStorage* m_webCacheStorage;
+ WebServiceWorkerCacheStorage* m_webCacheStorage;
};
} // namespace blink
« no previous file with comments | « Source/modules/screen_orientation/ScreenOrientationController.h ('k') | Source/modules/serviceworkers/Request.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698