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

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

Issue 1051363004: Drop ScriptState argument from global Cache Storage accessor. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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
« no previous file with comments | « no previous file | Source/modules/serviceworkers/GlobalCacheStorage.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/GlobalCacheStorage.h
diff --git a/Source/modules/serviceworkers/GlobalCacheStorage.h b/Source/modules/serviceworkers/GlobalCacheStorage.h
index da91768432dc2b628e71321c85fd3c7b9310814b..a00b7b17cbb2a4031400c8993fc499cd7af8f16c 100644
--- a/Source/modules/serviceworkers/GlobalCacheStorage.h
+++ b/Source/modules/serviceworkers/GlobalCacheStorage.h
@@ -10,13 +10,12 @@ namespace blink {
class CacheStorage;
class DOMWindow;
class ExceptionState;
-class ScriptState;
class WorkerGlobalScope;
class GlobalCacheStorage {
public:
- static CacheStorage* caches(ScriptState*, DOMWindow&, ExceptionState&);
- static CacheStorage* caches(ScriptState*, WorkerGlobalScope&, ExceptionState&);
+ static CacheStorage* caches(DOMWindow&, ExceptionState&);
+ static CacheStorage* caches(WorkerGlobalScope&, ExceptionState&);
};
} // namespace blink
« no previous file with comments | « no previous file | Source/modules/serviceworkers/GlobalCacheStorage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698