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

Unified Diff: third_party/WebKit/Source/web/InspectorEmulationAgent.h

Issue 1702673002: DevTools: migrate remote debugging protocol generators to jinja2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698