| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef WindowProxyManager_h | |
| 6 #define WindowProxyManager_h | |
| 7 | |
| 8 #include "platform/heap/Handle.h" | |
| 9 #include "wtf/Vector.h" | |
| 10 #include <utility> | |
| 11 #include <v8.h> | |
| 12 | |
| 13 namespace blink { | |
| 14 | |
| 15 class DOMWrapperWorld; | |
| 16 class Frame; | |
| 17 class ScriptState; | |
| 18 class SecurityOrigin; | |
| 19 class WindowProxy; | |
| 20 | |
| 21 class WindowProxyManager final : public NoBaseWillBeGarbageCollectedFinalized<Wi
ndowProxyManager> { | |
| 22 public: | |
| 23 static PassOwnPtrWillBeRawPtr<WindowProxyManager> create(Frame*); | |
| 24 | |
| 25 ~WindowProxyManager(); | |
| 26 void trace(Visitor*); | |
| 27 | |
| 28 Frame* frame() const { return m_frame.get(); } | |
| 29 v8::Isolate* isolate() const { return m_isolate; } | |
| 30 WindowProxy* mainWorldProxy() const { return m_windowProxy.get(); } | |
| 31 | |
| 32 WindowProxy* windowProxy(DOMWrapperWorld&); | |
| 33 | |
| 34 void clearForClose(); | |
| 35 void clearForNavigation(); | |
| 36 | |
| 37 // For devtools: | |
| 38 WindowProxy* existingWindowProxy(DOMWrapperWorld&); | |
| 39 void collectIsolatedContexts(Vector<std::pair<ScriptState*, SecurityOrigin*>
>&); | |
| 40 void setWorldDebugId(int worldId, int debuggerId); | |
| 41 | |
| 42 private: | |
| 43 typedef WillBeHeapHashMap<int, OwnPtrWillBeMember<WindowProxy> > IsolatedWor
ldMap; | |
| 44 | |
| 45 explicit WindowProxyManager(Frame*); | |
| 46 | |
| 47 RawPtrWillBeMember<Frame> m_frame; | |
| 48 v8::Isolate* const m_isolate; | |
| 49 | |
| 50 const OwnPtrWillBeMember<WindowProxy> m_windowProxy; | |
| 51 IsolatedWorldMap m_isolatedWorlds; | |
| 52 }; | |
| 53 | |
| 54 } // namespace blink | |
| 55 | |
| 56 #endif // WindowProxyManager_h | |
| OLD | NEW |