Chromium Code Reviews| Index: third_party/WebKit/Source/bindings/core/v8/V8Binding.h |
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8Binding.h b/third_party/WebKit/Source/bindings/core/v8/V8Binding.h |
| index 1df7fae7726c68025efbae99fb7607a1ef7a794a..6fcbc078333085b071a459a7cc754ed59aad8894 100644 |
| --- a/third_party/WebKit/Source/bindings/core/v8/V8Binding.h |
| +++ b/third_party/WebKit/Source/bindings/core/v8/V8Binding.h |
| @@ -995,7 +995,7 @@ CORE_EXPORT v8::Isolate* toIsolate(ExecutionContext*); |
| CORE_EXPORT v8::Isolate* toIsolate(LocalFrame*); |
| CORE_EXPORT DOMWindow* toDOMWindow(v8::Isolate*, v8::Local<v8::Value>); |
| -DOMWindow* toDOMWindow(v8::Local<v8::Context>); |
| +LocalDOMWindow* toDOMWindow(v8::Local<v8::Context>); |
|
Yuki
2017/03/01 08:08:02
Maybe, we should rename this to toLocalDOMWindow?
|
| LocalDOMWindow* enteredDOMWindow(v8::Isolate*); |
| CORE_EXPORT LocalDOMWindow* currentDOMWindow(v8::Isolate*); |
| CORE_EXPORT ExecutionContext* toExecutionContext(v8::Local<v8::Context>); |
| @@ -1018,7 +1018,7 @@ CORE_EXPORT v8::Local<v8::Context> toV8ContextEvenIfDetached(LocalFrame*, |
| // Returns the frame object of the window object associated with |
| // a context, if the window is currently being displayed in a Frame. |
| -CORE_EXPORT Frame* toFrameIfNotDetached(v8::Local<v8::Context>); |
| +CORE_EXPORT LocalFrame* toFrameIfNotDetached(v8::Local<v8::Context>); |
| // If 'storage' is non-null, it must be large enough to copy all bytes in the |
| // array buffer view into it. Use allocateFlexibleArrayBufferStorage(v8Value) |