| 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 DevToolsEmulator_h | 5 #ifndef DevToolsEmulator_h |
| 6 #define DevToolsEmulator_h | 6 #define DevToolsEmulator_h |
| 7 | 7 |
| 8 #include <memory> |
| 8 #include "platform/heap/Handle.h" | 9 #include "platform/heap/Handle.h" |
| 9 #include "public/platform/PointerProperties.h" | 10 #include "public/platform/PointerProperties.h" |
| 10 #include "public/platform/WebFloatPoint.h" | 11 #include "public/platform/WebFloatPoint.h" |
| 11 #include "public/platform/WebViewportStyle.h" | 12 #include "public/platform/WebViewportStyle.h" |
| 12 #include "public/web/WebDeviceEmulationParams.h" | 13 #include "public/web/WebDeviceEmulationParams.h" |
| 13 #include "web/WebExport.h" | 14 #include "web/WebExport.h" |
| 14 #include "wtf/Forward.h" | 15 #include "wtf/Forward.h" |
| 15 #include "wtf/Optional.h" | 16 #include "wtf/Optional.h" |
| 16 #include <memory> | |
| 17 | 17 |
| 18 namespace blink { | 18 namespace blink { |
| 19 | 19 |
| 20 class IntPoint; | 20 class IntPoint; |
| 21 class IntRect; | 21 class IntRect; |
| 22 class TransformationMatrix; | 22 class TransformationMatrix; |
| 23 class WebInputEvent; | 23 class WebInputEvent; |
| 24 class WebViewImpl; | 24 class WebViewImpl; |
| 25 | 25 |
| 26 class WEB_EXPORT DevToolsEmulator final | 26 class WEB_EXPORT DevToolsEmulator final |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 std::unique_ptr<IntPoint> m_lastPinchAnchorCss; | 115 std::unique_ptr<IntPoint> m_lastPinchAnchorCss; |
| 116 std::unique_ptr<IntPoint> m_lastPinchAnchorDip; | 116 std::unique_ptr<IntPoint> m_lastPinchAnchorDip; |
| 117 | 117 |
| 118 bool m_embedderScriptEnabled; | 118 bool m_embedderScriptEnabled; |
| 119 bool m_scriptExecutionDisabled; | 119 bool m_scriptExecutionDisabled; |
| 120 }; | 120 }; |
| 121 | 121 |
| 122 } // namespace blink | 122 } // namespace blink |
| 123 | 123 |
| 124 #endif | 124 #endif |
| OLD | NEW |