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

Side by Side Diff: third_party/WebKit/Source/web/DevToolsEmulator.h

Issue 2466383004: blink: Cleanup class forward declarations (Closed)
Patch Set: Created 4 years, 1 month 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 DevToolsEmulator_h 5 #ifndef DevToolsEmulator_h
6 #define DevToolsEmulator_h 6 #define DevToolsEmulator_h
7 7
8 #include "platform/heap/Handle.h" 8 #include "platform/heap/Handle.h"
9 #include "public/platform/PointerProperties.h" 9 #include "public/platform/PointerProperties.h"
10 #include "public/platform/WebFloatPoint.h" 10 #include "public/platform/WebFloatPoint.h"
11 #include "public/platform/WebViewportStyle.h" 11 #include "public/platform/WebViewportStyle.h"
12 #include "public/web/WebDeviceEmulationParams.h" 12 #include "public/web/WebDeviceEmulationParams.h"
13 #include "web/WebExport.h" 13 #include "web/WebExport.h"
14 #include "wtf/Forward.h" 14 #include "wtf/Forward.h"
15 #include "wtf/Optional.h" 15 #include "wtf/Optional.h"
16 #include <memory> 16 #include <memory>
17 17
18 namespace blink { 18 namespace blink {
19 19
20 class InspectorEmulationAgent;
21 class IntPoint; 20 class IntPoint;
22 class IntRect; 21 class IntRect;
23 class TransformationMatrix; 22 class TransformationMatrix;
24 class WebInputEvent; 23 class WebInputEvent;
25 class WebViewImpl; 24 class WebViewImpl;
26 25
27 class WEB_EXPORT DevToolsEmulator final 26 class WEB_EXPORT DevToolsEmulator final
28 : public GarbageCollectedFinalized<DevToolsEmulator> { 27 : public GarbageCollectedFinalized<DevToolsEmulator> {
29 public: 28 public:
30 ~DevToolsEmulator(); 29 ~DevToolsEmulator();
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 std::unique_ptr<IntPoint> m_lastPinchAnchorCss; 116 std::unique_ptr<IntPoint> m_lastPinchAnchorCss;
118 std::unique_ptr<IntPoint> m_lastPinchAnchorDip; 117 std::unique_ptr<IntPoint> m_lastPinchAnchorDip;
119 118
120 bool m_embedderScriptEnabled; 119 bool m_embedderScriptEnabled;
121 bool m_scriptExecutionDisabled; 120 bool m_scriptExecutionDisabled;
122 }; 121 };
123 122
124 } // namespace blink 123 } // namespace blink
125 124
126 #endif 125 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698