| 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 InspectorEmulationAgent_h | 5 #ifndef InspectorEmulationAgent_h |
| 6 #define InspectorEmulationAgent_h | 6 #define InspectorEmulationAgent_h |
| 7 | 7 |
| 8 #include "core/inspector/InspectorBaseAgent.h" | 8 #include "core/inspector/InspectorBaseAgent.h" |
| 9 #include "core/inspector/protocol/Emulation.h" | 9 #include "core/inspector/protocol/Emulation.h" |
| 10 | 10 |
| 11 namespace blink { | 11 namespace blink { |
| 12 | 12 |
| 13 class WebLocalFrameImpl; | 13 class WebLocalFrameImpl; |
| 14 class WebViewImpl; | 14 class WebViewImpl; |
| 15 | 15 |
| 16 class InspectorEmulationAgent final : public InspectorBaseAgent<protocol::Emulat
ion::Metainfo> { | 16 class InspectorEmulationAgent final : public InspectorBaseAgent<protocol::Emulat
ion::Metainfo> { |
| 17 WTF_MAKE_NONCOPYABLE(InspectorEmulationAgent); | 17 WTF_MAKE_NONCOPYABLE(InspectorEmulationAgent); |
| 18 public: | 18 public: |
| 19 class Client { | 19 class Client { |
| 20 public: | 20 public: |
| 21 virtual ~Client() {} | 21 virtual ~Client() {} |
| 22 | 22 |
| 23 virtual void setCPUThrottlingRate(double rate) {} | 23 virtual void setCPUThrottlingRate(double rate) {} |
| 24 }; | 24 }; |
| 25 | 25 |
| 26 static InspectorEmulationAgent* create(WebLocalFrameImpl*, Client*); | 26 static InspectorEmulationAgent* create(WebLocalFrameImpl*, Client*); |
| 27 ~InspectorEmulationAgent() override; | 27 ~InspectorEmulationAgent() override; |
| 28 | 28 |
| 29 // protocol::Dispatcher::EmulationCommandHandler implementation. | 29 // protocol::Dispatcher::EmulationCommandHandler implementation. |
| 30 void setScrollAndScaleOverride(ErrorString*, const Maybe<int>& scrollPositio
nX, const Maybe<int>& scrollPositionY, const Maybe<double>& visualViewportPositi
onX, const Maybe<double>& visualViewportPositionY, const Maybe<double>& visualVi
ewportScale) override; |
| 31 void clearScrollAndScaleOverride(ErrorString*) override; |
| 30 void resetPageScaleFactor(ErrorString*) override; | 32 void resetPageScaleFactor(ErrorString*) override; |
| 31 void setPageScaleFactor(ErrorString*, double in_pageScaleFactor) override; | 33 void setPageScaleFactor(ErrorString*, double in_pageScaleFactor) override; |
| 32 void setScriptExecutionDisabled(ErrorString*, bool in_value) override; | 34 void setScriptExecutionDisabled(ErrorString*, bool in_value) override; |
| 33 void setTouchEmulationEnabled(ErrorString*, bool in_enabled, const protocol:
:Maybe<String>& in_configuration) override; | 35 void setTouchEmulationEnabled(ErrorString*, bool in_enabled, const protocol:
:Maybe<String>& in_configuration) override; |
| 34 void setEmulatedMedia(ErrorString*, const String& in_media) override; | 36 void setEmulatedMedia(ErrorString*, const String& in_media) override; |
| 35 void setCPUThrottlingRate(ErrorString*, double in_rate) override; | 37 void setCPUThrottlingRate(ErrorString*, double in_rate) override; |
| 36 void setVirtualTimePolicy(ErrorString*, const String& in_policy) override; | 38 void setVirtualTimePolicy(ErrorString*, const String& in_policy) override; |
| 37 | 39 |
| 38 // InspectorBaseAgent overrides. | 40 // InspectorBaseAgent overrides. |
| 39 void disable(ErrorString*) override; | 41 void disable(ErrorString*) override; |
| 40 void restore() override; | 42 void restore() override; |
| 41 | 43 |
| 42 DECLARE_VIRTUAL_TRACE(); | 44 DECLARE_VIRTUAL_TRACE(); |
| 43 | 45 |
| 44 private: | 46 private: |
| 45 InspectorEmulationAgent(WebLocalFrameImpl*, Client*); | 47 InspectorEmulationAgent(WebLocalFrameImpl*, Client*); |
| 46 WebViewImpl* webViewImpl(); | 48 WebViewImpl* webViewImpl(); |
| 47 | 49 |
| 50 void setScrollAndScaleOverride(int framePositionX, int framePositionY, doubl
e visualViewportPositionX, double visualViewportPositionY, double pageScale); |
| 51 |
| 48 Member<WebLocalFrameImpl> m_webLocalFrameImpl; | 52 Member<WebLocalFrameImpl> m_webLocalFrameImpl; |
| 49 Client* m_client; | 53 Client* m_client; |
| 50 }; | 54 }; |
| 51 | 55 |
| 52 } // namespace blink | 56 } // namespace blink |
| 53 | 57 |
| 54 #endif // !defined(InspectorEmulationAgent_h) | 58 #endif // !defined(InspectorEmulationAgent_h) |
| OLD | NEW |