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

Unified Diff: third_party/WebKit/Source/core/inspector/protocol/Rendering.json

Issue 2035653005: DevTools: split protocol.json into files per domain. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/core/inspector/protocol/Rendering.json
diff --git a/third_party/WebKit/Source/core/inspector/protocol/Rendering.json b/third_party/WebKit/Source/core/inspector/protocol/Rendering.json
new file mode 100644
index 0000000000000000000000000000000000000000..e690aad62711d14dea5a23917b7e7c366bf43c3c
--- /dev/null
+++ b/third_party/WebKit/Source/core/inspector/protocol/Rendering.json
@@ -0,0 +1,66 @@
+{
+ "domain": "Rendering",
+ "version": {
+ "major": "1",
+ "minor": "1"
+ },
+ "description": "This domain allows to control rendering of the page.",
+ "hidden": true,
+ "commands": [
+ {
+ "name": "setShowPaintRects",
+ "description": "Requests that backend shows paint rectangles",
+ "parameters": [
+ {
+ "name": "result",
+ "type": "boolean",
+ "description": "True for showing paint rectangles"
+ }
+ ]
+ },
+ {
+ "name": "setShowDebugBorders",
+ "description": "Requests that backend shows debug borders on layers",
+ "parameters": [
+ {
+ "name": "show",
+ "type": "boolean",
+ "description": "True for showing debug borders"
+ }
+ ]
+ },
+ {
+ "name": "setShowFPSCounter",
+ "description": "Requests that backend shows the FPS counter",
+ "parameters": [
+ {
+ "name": "show",
+ "type": "boolean",
+ "description": "True for showing the FPS counter"
+ }
+ ]
+ },
+ {
+ "name": "setShowScrollBottleneckRects",
+ "description": "Requests that backend shows scroll bottleneck rects",
+ "parameters": [
+ {
+ "name": "show",
+ "type": "boolean",
+ "description": "True for showing scroll bottleneck rects"
+ }
+ ]
+ },
+ {
+ "name": "setShowViewportSizeOnResize",
+ "description": "Paints viewport size upon main frame resize.",
+ "parameters": [
+ {
+ "name": "show",
+ "type": "boolean",
+ "description": "Whether to paint size or not."
+ }
+ ]
+ }
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698