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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ToV8.h

Issue 2620493002: binding: Changes the association among global-proxy/global/worker-instance. (Closed)
Patch Set: Synced. Created 3 years, 11 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/bindings/core/v8/ToV8.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/ToV8.h b/third_party/WebKit/Source/bindings/core/v8/ToV8.h
index 0e2086db083469098a9c5283c871ff7f9edb5144..2495d769c709f6673e5e6f9ebe18f44bd7527aaa 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ToV8.h
+++ b/third_party/WebKit/Source/bindings/core/v8/ToV8.h
@@ -25,7 +25,6 @@ namespace blink {
class DOMWindow;
class Dictionary;
class EventTarget;
-class WorkerOrWorkletGlobalScope;
// ScriptWrappable
@@ -57,7 +56,7 @@ inline v8::Local<v8::Value> ToV8(Node* impl,
return wrapper;
}
-// Special versions for DOMWindow, WorkerOrWorkletGlobalScope and EventTarget
+// Special versions for DOMWindow and EventTarget
CORE_EXPORT v8::Local<v8::Value> ToV8(DOMWindow*,
v8::Local<v8::Object> creationContext,
@@ -65,9 +64,6 @@ CORE_EXPORT v8::Local<v8::Value> ToV8(DOMWindow*,
CORE_EXPORT v8::Local<v8::Value> ToV8(EventTarget*,
v8::Local<v8::Object> creationContext,
v8::Isolate*);
-v8::Local<v8::Value> ToV8(WorkerOrWorkletGlobalScope*,
- v8::Local<v8::Object> creationContext,
- v8::Isolate*);
// Primitives

Powered by Google App Engine
This is Rietveld 408576698