| Index: third_party/WebKit/Source/web/InspectorEmulationAgent.h
|
| diff --git a/third_party/WebKit/Source/web/InspectorEmulationAgent.h b/third_party/WebKit/Source/web/InspectorEmulationAgent.h
|
| index dfc760b0f1e66f998523cedb3febddc06ef3d2f1..36e2ce69f67807be13789ae2d6f0a46a98f9ad6c 100644
|
| --- a/third_party/WebKit/Source/web/InspectorEmulationAgent.h
|
| +++ b/third_party/WebKit/Source/web/InspectorEmulationAgent.h
|
| @@ -29,11 +29,11 @@ public:
|
|
|
| // protocol::Dispatcher::EmulationCommandHandler implementation.
|
| void resetPageScaleFactor(ErrorString*) override;
|
| - void setPageScaleFactor(ErrorString*, double pageScaleFactor) override;
|
| - void setScriptExecutionDisabled(ErrorString*, bool) override;
|
| - void setTouchEmulationEnabled(ErrorString*, bool enabled, const String* configuration) override;
|
| - void setEmulatedMedia(ErrorString*, const String&) override;
|
| - void setCPUThrottlingRate(ErrorString*, double rate) override;
|
| + void setPageScaleFactor(ErrorString*, double in_pageScaleFactor) override;
|
| + void setScriptExecutionDisabled(ErrorString*, bool in_value) override;
|
| + void setTouchEmulationEnabled(ErrorString*, bool in_enabled, const protocol::OptionalValue<String>& in_configuration) override;
|
| + void setEmulatedMedia(ErrorString*, const String& in_media) override;
|
| + void setCPUThrottlingRate(ErrorString*, double in_rate) override;
|
|
|
| // InspectorBaseAgent overrides.
|
| void disable(ErrorString*) override;
|
|
|