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

Unified Diff: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerClient.h

Issue 2691333002: Replace [CallWith=ExecutionContext] with [CallWith=ScriptState] (Closed)
Patch Set: Created 3 years, 10 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: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerClient.h
diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerClient.h b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerClient.h
index 1da5eba720970d4fb8a295e24fa8449d82516a03..fb89c1e842824b8de8b8feb66a305789b4170c6c 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerClient.h
+++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerClient.h
@@ -16,8 +16,8 @@
namespace blink {
-class ExecutionContext;
class ScriptPromiseResolver;
+class ScriptState;
class MODULES_EXPORT ServiceWorkerClient
: public GarbageCollectedFinalized<ServiceWorkerClient>,
@@ -38,7 +38,7 @@ class MODULES_EXPORT ServiceWorkerClient
String url() const { return m_url; }
String frameType() const;
String id() const { return m_uuid; }
- void postMessage(ExecutionContext*,
+ void postMessage(ScriptState*,
PassRefPtr<SerializedScriptValue> message,
const MessagePortArray&,
ExceptionState&);

Powered by Google App Engine
This is Rietveld 408576698