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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 #include <v8.h> | 43 #include <v8.h> |
44 | 44 |
45 namespace blink { | 45 namespace blink { |
46 | 46 |
47 class Frame; | 47 class Frame; |
48 class HTMLDocument; | 48 class HTMLDocument; |
49 class SecurityOrigin; | 49 class SecurityOrigin; |
50 | 50 |
51 // WindowProxy represents all the per-global object state for a Frame that | 51 // WindowProxy represents all the per-global object state for a Frame that |
52 // persist between navigations. | 52 // persist between navigations. |
53 class WindowProxy final : public NoBaseWillBeGarbageCollectedFinalized<WindowPro
xy> { | 53 class WindowProxy final : public GarbageCollectedFinalized<WindowProxy> { |
54 USING_FAST_MALLOC_WILL_BE_REMOVED(WindowProxy); | |
55 public: | 54 public: |
56 static PassOwnPtrWillBeRawPtr<WindowProxy> create(v8::Isolate*, Frame*, DOMW
rapperWorld&); | 55 static RawPtr<WindowProxy> create(v8::Isolate*, Frame*, DOMWrapperWorld&); |
57 | 56 |
58 ~WindowProxy(); | 57 ~WindowProxy(); |
59 DECLARE_TRACE(); | 58 DECLARE_TRACE(); |
60 | 59 |
61 v8::Local<v8::Context> contextIfInitialized() const { return m_scriptState ?
m_scriptState->context() : v8::Local<v8::Context>(); } | 60 v8::Local<v8::Context> contextIfInitialized() const { return m_scriptState ?
m_scriptState->context() : v8::Local<v8::Context>(); } |
62 ScriptState* getScriptState() const { return m_scriptState.get(); } | 61 ScriptState* getScriptState() const { return m_scriptState.get(); } |
63 | 62 |
64 // Update document object of the frame. | 63 // Update document object of the frame. |
65 void updateDocument(); | 64 void updateDocument(); |
66 | 65 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 // object for fast access. UpdateDocumentProperty sets the wrapper | 101 // object for fast access. UpdateDocumentProperty sets the wrapper |
103 // for the current document on the global object. | 102 // for the current document on the global object. |
104 void updateDocumentProperty(); | 103 void updateDocumentProperty(); |
105 | 104 |
106 // Updates Activity Logger for the current context. | 105 // Updates Activity Logger for the current context. |
107 void updateActivityLogger(); | 106 void updateActivityLogger(); |
108 | 107 |
109 void createContext(); | 108 void createContext(); |
110 bool installDOMWindow(); | 109 bool installDOMWindow(); |
111 | 110 |
112 RawPtrWillBeMember<Frame> m_frame; | 111 Member<Frame> m_frame; |
113 v8::Isolate* m_isolate; | 112 v8::Isolate* m_isolate; |
114 RefPtr<ScriptState> m_scriptState; | 113 RefPtr<ScriptState> m_scriptState; |
115 RefPtr<DOMWrapperWorld> m_world; | 114 RefPtr<DOMWrapperWorld> m_world; |
116 ScopedPersistent<v8::Object> m_global; | 115 ScopedPersistent<v8::Object> m_global; |
117 ScopedPersistent<v8::Object> m_document; | 116 ScopedPersistent<v8::Object> m_document; |
118 }; | 117 }; |
119 | 118 |
120 } // namespace blink | 119 } // namespace blink |
121 | 120 |
122 #endif // WindowProxy_h | 121 #endif // WindowProxy_h |
OLD | NEW |