OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WindowProxyManager_h | 5 #ifndef WindowProxyManager_h |
6 #define WindowProxyManager_h | 6 #define WindowProxyManager_h |
7 | 7 |
8 #include <utility> | |
9 | |
10 #include "bindings/core/v8/LocalWindowProxy.h" | 8 #include "bindings/core/v8/LocalWindowProxy.h" |
11 #include "bindings/core/v8/RemoteWindowProxy.h" | 9 #include "bindings/core/v8/RemoteWindowProxy.h" |
12 #include "core/CoreExport.h" | 10 #include "core/CoreExport.h" |
13 #include "core/frame/LocalFrame.h" | 11 #include "core/frame/LocalFrame.h" |
14 #include "core/frame/RemoteFrame.h" | 12 #include "core/frame/RemoteFrame.h" |
15 #include "platform/heap/Handle.h" | 13 #include "platform/heap/Handle.h" |
16 #include "v8/include/v8.h" | 14 #include <utility> |
| 15 #include <v8.h> |
17 | 16 |
18 namespace blink { | 17 namespace blink { |
19 | 18 |
20 class DOMWrapperWorld; | 19 class DOMWrapperWorld; |
21 class SecurityOrigin; | 20 class SecurityOrigin; |
22 class ScriptController; | 21 class ScriptController; |
23 | 22 |
24 class WindowProxyManagerBase : public GarbageCollected<WindowProxyManagerBase> { | 23 class WindowProxyManagerBase : public GarbageCollected<WindowProxyManagerBase> { |
25 public: | 24 public: |
26 DECLARE_TRACE(); | 25 DECLARE_TRACE(); |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 } | 98 } |
100 | 99 |
101 private: | 100 private: |
102 explicit RemoteWindowProxyManager(RemoteFrame& frame) | 101 explicit RemoteWindowProxyManager(RemoteFrame& frame) |
103 : WindowProxyManagerImplHelper<RemoteFrame, RemoteWindowProxy>(frame) {} | 102 : WindowProxyManagerImplHelper<RemoteFrame, RemoteWindowProxy>(frame) {} |
104 }; | 103 }; |
105 | 104 |
106 } // namespace blink | 105 } // namespace blink |
107 | 106 |
108 #endif // WindowProxyManager_h | 107 #endif // WindowProxyManager_h |
OLD | NEW |