| Index: Source/bindings/v8/V8Binding.h
|
| diff --git a/Source/bindings/v8/V8Binding.h b/Source/bindings/v8/V8Binding.h
|
| index 8fcedbb59864eaf3bca6ab9ab89d929289e99d94..65bb69b795e95beedf77bf2f4d8fbf3b9cbe2dc4 100644
|
| --- a/Source/bindings/v8/V8Binding.h
|
| +++ b/Source/bindings/v8/V8Binding.h
|
| @@ -47,7 +47,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -class DOMWindow;
|
| +class LocalDOMWindow;
|
| class Document;
|
| class EventListener;
|
| class ExecutionContext;
|
| @@ -759,11 +759,11 @@ inline v8::Handle<v8::Value> toV8Sequence(v8::Handle<v8::Value> value, uint32_t&
|
| v8::Isolate* toIsolate(ExecutionContext*);
|
| v8::Isolate* toIsolate(LocalFrame*);
|
|
|
| -DOMWindow* toDOMWindow(v8::Handle<v8::Value>, v8::Isolate*);
|
| -DOMWindow* toDOMWindow(v8::Handle<v8::Context>);
|
| -DOMWindow* enteredDOMWindow(v8::Isolate*);
|
| -DOMWindow* currentDOMWindow(v8::Isolate*);
|
| -DOMWindow* callingDOMWindow(v8::Isolate*);
|
| +LocalDOMWindow* toDOMWindow(v8::Handle<v8::Value>, v8::Isolate*);
|
| +LocalDOMWindow* toDOMWindow(v8::Handle<v8::Context>);
|
| +LocalDOMWindow* enteredDOMWindow(v8::Isolate*);
|
| +LocalDOMWindow* currentDOMWindow(v8::Isolate*);
|
| +LocalDOMWindow* callingDOMWindow(v8::Isolate*);
|
| ExecutionContext* toExecutionContext(v8::Handle<v8::Context>);
|
| ExecutionContext* currentExecutionContext(v8::Isolate*);
|
| ExecutionContext* callingExecutionContext(v8::Isolate*);
|
|
|