OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009, 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2009, 2011 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 27 matching lines...) Expand all Loading... |
38 #include "bindings/core/v8/ScriptController.h" | 38 #include "bindings/core/v8/ScriptController.h" |
39 #include "bindings/core/v8/ScriptSourceCode.h" | 39 #include "bindings/core/v8/ScriptSourceCode.h" |
40 #include "bindings/core/v8/SerializedScriptValue.h" | 40 #include "bindings/core/v8/SerializedScriptValue.h" |
41 #include "bindings/core/v8/V8Binding.h" | 41 #include "bindings/core/v8/V8Binding.h" |
42 #include "bindings/core/v8/V8EventListener.h" | 42 #include "bindings/core/v8/V8EventListener.h" |
43 #include "bindings/core/v8/V8EventListenerList.h" | 43 #include "bindings/core/v8/V8EventListenerList.h" |
44 #include "bindings/core/v8/V8GCForContextDispose.h" | 44 #include "bindings/core/v8/V8GCForContextDispose.h" |
45 #include "bindings/core/v8/V8HTMLCollection.h" | 45 #include "bindings/core/v8/V8HTMLCollection.h" |
46 #include "bindings/core/v8/V8HiddenValue.h" | 46 #include "bindings/core/v8/V8HiddenValue.h" |
47 #include "bindings/core/v8/V8Node.h" | 47 #include "bindings/core/v8/V8Node.h" |
| 48 #include "core/dom/DOMArrayBuffer.h" |
48 #include "core/dom/ExceptionCode.h" | 49 #include "core/dom/ExceptionCode.h" |
49 #include "core/dom/MessagePort.h" | 50 #include "core/dom/MessagePort.h" |
50 #include "core/frame/DOMTimer.h" | 51 #include "core/frame/DOMTimer.h" |
51 #include "core/frame/DOMWindowTimers.h" | 52 #include "core/frame/DOMWindowTimers.h" |
52 #include "core/frame/FrameView.h" | 53 #include "core/frame/FrameView.h" |
53 #include "core/frame/LocalDOMWindow.h" | 54 #include "core/frame/LocalDOMWindow.h" |
54 #include "core/frame/LocalFrame.h" | 55 #include "core/frame/LocalFrame.h" |
55 #include "core/frame/Settings.h" | 56 #include "core/frame/Settings.h" |
56 #include "core/frame/csp/ContentSecurityPolicy.h" | 57 #include "core/frame/csp/ContentSecurityPolicy.h" |
57 #include "core/html/HTMLCollection.h" | 58 #include "core/html/HTMLCollection.h" |
58 #include "core/html/HTMLDocument.h" | 59 #include "core/html/HTMLDocument.h" |
59 #include "core/inspector/ScriptCallStack.h" | 60 #include "core/inspector/ScriptCallStack.h" |
60 #include "core/loader/FrameLoadRequest.h" | 61 #include "core/loader/FrameLoadRequest.h" |
61 #include "core/loader/FrameLoader.h" | 62 #include "core/loader/FrameLoader.h" |
62 #include "core/storage/Storage.h" | 63 #include "core/storage/Storage.h" |
63 #include "platform/PlatformScreen.h" | 64 #include "platform/PlatformScreen.h" |
64 #include "platform/graphics/media/MediaPlayer.h" | 65 #include "platform/graphics/media/MediaPlayer.h" |
65 #include "wtf/ArrayBuffer.h" | |
66 #include "wtf/Assertions.h" | 66 #include "wtf/Assertions.h" |
67 #include "wtf/OwnPtr.h" | 67 #include "wtf/OwnPtr.h" |
68 | 68 |
69 namespace blink { | 69 namespace blink { |
70 | 70 |
71 // FIXME: There is a lot of duplication with SetTimeoutOrInterval() in V8WorkerG
lobalScopeCustom.cpp. | 71 // FIXME: There is a lot of duplication with SetTimeoutOrInterval() in V8WorkerG
lobalScopeCustom.cpp. |
72 // We should refactor this. | 72 // We should refactor this. |
73 static void windowSetTimeoutImpl(const v8::FunctionCallbackInfo<v8::Value>& info
, bool singleShot, ExceptionState& exceptionState) | 73 static void windowSetTimeoutImpl(const v8::FunctionCallbackInfo<v8::Value>& info
, bool singleShot, ExceptionState& exceptionState) |
74 { | 74 { |
75 int argumentCount = info.Length(); | 75 int argumentCount = info.Length(); |
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
542 v8::Handle<v8::Context> context = toV8Context(frame, DOMWrapperWorld::curren
t(isolate)); | 542 v8::Handle<v8::Context> context = toV8Context(frame, DOMWrapperWorld::curren
t(isolate)); |
543 if (context.IsEmpty()) | 543 if (context.IsEmpty()) |
544 return v8Undefined(); | 544 return v8Undefined(); |
545 | 545 |
546 v8::Handle<v8::Object> global = context->Global(); | 546 v8::Handle<v8::Object> global = context->Global(); |
547 ASSERT(!global.IsEmpty()); | 547 ASSERT(!global.IsEmpty()); |
548 return global; | 548 return global; |
549 } | 549 } |
550 | 550 |
551 } // namespace blink | 551 } // namespace blink |
OLD | NEW |