Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(333)

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/WindowProxyManager.h

Issue 2721533003: //third_party/WebKit/Source/bindings: include v8 as a user, not system, header (Closed)
Patch Set: . Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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> 16 #include "v8/include/v8.h"
15 #include <v8.h>
16 17
17 namespace blink { 18 namespace blink {
18 19
19 class DOMWrapperWorld; 20 class DOMWrapperWorld;
20 class SecurityOrigin; 21 class SecurityOrigin;
21 class ScriptController; 22 class ScriptController;
22 23
23 class WindowProxyManagerBase : public GarbageCollected<WindowProxyManagerBase> { 24 class WindowProxyManagerBase : public GarbageCollected<WindowProxyManagerBase> {
24 public: 25 public:
25 DECLARE_TRACE(); 26 DECLARE_TRACE();
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 } 99 }
99 100
100 private: 101 private:
101 explicit RemoteWindowProxyManager(RemoteFrame& frame) 102 explicit RemoteWindowProxyManager(RemoteFrame& frame)
102 : WindowProxyManagerImplHelper<RemoteFrame, RemoteWindowProxy>(frame) {} 103 : WindowProxyManagerImplHelper<RemoteFrame, RemoteWindowProxy>(frame) {}
103 }; 104 };
104 105
105 } // namespace blink 106 } // namespace blink
106 107
107 #endif // WindowProxyManager_h 108 #endif // WindowProxyManager_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698