| 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 <v8.h> |
| 9 #include <utility> |
| 8 #include "bindings/core/v8/LocalWindowProxy.h" | 10 #include "bindings/core/v8/LocalWindowProxy.h" |
| 9 #include "bindings/core/v8/RemoteWindowProxy.h" | 11 #include "bindings/core/v8/RemoteWindowProxy.h" |
| 10 #include "core/CoreExport.h" | 12 #include "core/CoreExport.h" |
| 11 #include "core/frame/LocalFrame.h" | 13 #include "core/frame/LocalFrame.h" |
| 12 #include "core/frame/RemoteFrame.h" | 14 #include "core/frame/RemoteFrame.h" |
| 13 #include "platform/heap/Handle.h" | 15 #include "platform/heap/Handle.h" |
| 14 #include <utility> | |
| 15 #include <v8.h> | |
| 16 | 16 |
| 17 namespace blink { | 17 namespace blink { |
| 18 | 18 |
| 19 class DOMWrapperWorld; | 19 class DOMWrapperWorld; |
| 20 class SecurityOrigin; | 20 class SecurityOrigin; |
| 21 class ScriptController; | 21 class ScriptController; |
| 22 | 22 |
| 23 class WindowProxyManagerBase : public GarbageCollected<WindowProxyManagerBase> { | 23 class WindowProxyManagerBase : public GarbageCollected<WindowProxyManagerBase> { |
| 24 public: | 24 public: |
| 25 DECLARE_TRACE(); | 25 DECLARE_TRACE(); |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 } | 98 } |
| 99 | 99 |
| 100 private: | 100 private: |
| 101 explicit RemoteWindowProxyManager(RemoteFrame& frame) | 101 explicit RemoteWindowProxyManager(RemoteFrame& frame) |
| 102 : WindowProxyManagerImplHelper<RemoteFrame, RemoteWindowProxy>(frame) {} | 102 : WindowProxyManagerImplHelper<RemoteFrame, RemoteWindowProxy>(frame) {} |
| 103 }; | 103 }; |
| 104 | 104 |
| 105 } // namespace blink | 105 } // namespace blink |
| 106 | 106 |
| 107 #endif // WindowProxyManager_h | 107 #endif // WindowProxyManager_h |
| OLD | NEW |