OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 10 matching lines...) Expand all Loading... | |
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef WindowProxy_h | 31 #ifndef RemoteWindowProxy_h |
32 #define WindowProxy_h | 32 #define RemoteWindowProxy_h |
33 | 33 |
34 #include "bindings/core/v8/DOMWrapperWorld.h" | 34 #include "bindings/core/v8/DOMWrapperWorld.h" |
35 #include "bindings/core/v8/ScopedPersistent.h" | 35 #include "core/frame/RemoteFrame.h" |
36 #include "bindings/core/v8/ScriptState.h" | |
37 #include "platform/heap/Handle.h" | |
38 #include "platform/weborigin/SecurityOrigin.h" | |
39 #include "wtf/HashMap.h" | |
40 #include "wtf/PassRefPtr.h" | |
41 #include "wtf/RefPtr.h" | |
42 #include "wtf/text/AtomicString.h" | |
43 #include <v8.h> | 36 #include <v8.h> |
44 | 37 |
45 namespace blink { | 38 namespace blink { |
46 | 39 |
47 class Frame; | 40 // Subclass of WindowProxy that only handles RemoteFrame. |
48 class HTMLDocument; | 41 class RemoteWindowProxy final : public WindowProxy { |
49 class SecurityOrigin; | 42 public: |
43 static RemoteWindowProxy* create(RemoteFrame& frame, | |
44 v8::Isolate* isolate, | |
45 RefPtr<DOMWrapperWorld> world) { | |
46 return new RemoteWindowProxy(frame, isolate, std::move(world)); | |
47 } | |
50 | 48 |
51 // WindowProxy represents all the per-global object state for a Frame that | 49 ~RemoteWindowProxy() override; |
Yuki
2017/01/11 10:09:24
nit: "= default" should work, or we don't need thi
dcheng
2017/01/11 10:35:28
Done.
| |
52 // persist between navigations. | |
53 class WindowProxy final : public GarbageCollectedFinalized<WindowProxy> { | |
54 public: | |
55 static WindowProxy* create(v8::Isolate*, Frame*, DOMWrapperWorld&); | |
56 | |
57 ~WindowProxy(); | |
58 DECLARE_TRACE(); | |
59 | |
60 v8::Local<v8::Context> contextIfInitialized() const { | |
61 return m_scriptState ? m_scriptState->context() : v8::Local<v8::Context>(); | |
62 } | |
63 ScriptState* getScriptState() const { return m_scriptState.get(); } | |
64 | |
65 // Update document object of the frame. | |
66 void updateDocument(); | |
67 | |
68 void namedItemAdded(HTMLDocument*, const AtomicString&); | |
69 void namedItemRemoved(HTMLDocument*, const AtomicString&); | |
70 | |
71 // Update the security origin of a document | |
72 // (e.g., after setting docoument.domain). | |
73 void updateSecurityOrigin(SecurityOrigin*); | |
74 | |
75 void initializeIfNeeded(); | |
76 | |
77 void clearForNavigation(); | |
78 void clearForClose(); | |
79 | |
80 v8::Local<v8::Object> globalIfNotDetached(); | |
81 v8::Local<v8::Object> releaseGlobal(); | |
82 void setGlobal(v8::Local<v8::Object>); | |
83 | |
84 DOMWrapperWorld& world() { return *m_world; } | |
85 | 50 |
86 private: | 51 private: |
87 // A valid transition is from ContextUninitialized to ContextInitialized, | 52 RemoteWindowProxy(RemoteFrame&, v8::Isolate*, RefPtr<DOMWrapperWorld>); |
88 // and then ContextDetached. Other transitions are forbidden. | |
89 enum class Lifecycle { | |
90 ContextUninitialized, | |
91 ContextInitialized, | |
92 ContextDetached, | |
93 }; | |
94 | 53 |
95 WindowProxy(Frame*, PassRefPtr<DOMWrapperWorld>, v8::Isolate*); | 54 void initialize() override; |
96 void initialize(); | |
97 | |
98 enum GlobalDetachmentBehavior { DoNotDetachGlobal, DetachGlobal }; | |
99 void disposeContext(GlobalDetachmentBehavior); | 55 void disposeContext(GlobalDetachmentBehavior); |
Yuki
2017/01/11 10:09:24
nit: Add override;
dcheng
2017/01/11 10:35:28
Done.
| |
100 | 56 |
101 void setSecurityToken(SecurityOrigin*); | |
102 | |
103 // The JavaScript wrapper for the document object is cached on the global | |
104 // object for fast access. UpdateDocumentProperty sets the wrapper | |
105 // for the current document on the global object. | |
106 void updateDocumentProperty(); | |
107 | |
108 // Updates Activity Logger for the current context. | |
109 void updateActivityLogger(); | |
110 | |
111 // Creates a new v8::Context with the window wrapper object as the global | 57 // Creates a new v8::Context with the window wrapper object as the global |
112 // object (aka the inner global). Note that the window wrapper and its | 58 // object (aka the inner global). Note that the window wrapper and its |
113 // prototype chain do not get fully initialized yet, e.g. the window | 59 // prototype chain do not get fully initialized yet, e.g. the window |
114 // wrapper is not yet associated with the native DOMWindow object. | 60 // wrapper is not yet associated with the native DOMWindow object. |
115 void createContext(); | 61 void createContext(); |
116 | |
117 // Associates the window wrapper and its prototype chain with the native | |
118 // DOMWindow object. Also does some more Window-specific initialization. | |
119 void setupWindowPrototypeChain(); | |
120 | |
121 Member<Frame> m_frame; | |
122 v8::Isolate* m_isolate; | |
123 RefPtr<ScriptState> m_scriptState; | |
124 RefPtr<DOMWrapperWorld> m_world; | |
125 ScopedPersistent<v8::Object> m_globalProxy; | |
126 Lifecycle m_lifecycle; | |
127 }; | 62 }; |
128 | 63 |
129 } // namespace blink | 64 } // namespace blink |
130 | 65 |
131 #endif // WindowProxy_h | 66 #endif // RemoteWindowProxy_h |
OLD | NEW |