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

Side by Side Diff: content/browser/devtools/devtools_protocol_constants.h

Issue 23678005: DevTools: migrate from scale to max size parameters in capture screen. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | content/browser/devtools/devtools_protocol_constants.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ 5 #ifndef CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_
6 #define CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ 6 #define CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_
7 7
8 // The constants in this file should be used instead manually constructing 8 // The constants in this file should be used instead manually constructing
9 // strings passed to and from DevTools protocol. 9 // strings passed to and from DevTools protocol.
10 // 10 //
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 84
85 namespace navigate { 85 namespace navigate {
86 extern const char kName[]; 86 extern const char kName[];
87 extern const char kParamUrl[]; 87 extern const char kParamUrl[];
88 } // navigate 88 } // navigate
89 89
90 namespace captureScreenshot { 90 namespace captureScreenshot {
91 extern const char kName[]; 91 extern const char kName[];
92 extern const char kParamFormat[]; 92 extern const char kParamFormat[];
93 extern const char kParamQuality[]; 93 extern const char kParamQuality[];
94 extern const char kParamScale[]; 94 extern const char kParamMaxWidth[];
95 extern const char kParamMaxHeight[];
95 } // captureScreenshot 96 } // captureScreenshot
96 97
97 namespace startScreencast { 98 namespace startScreencast {
98 extern const char kName[]; 99 extern const char kName[];
99 extern const char kParamFormat[];
100 extern const char kParamQuality[];
101 extern const char kParamScale[];
102 } // startScreencast 100 } // startScreencast
103 101
104 namespace stopScreencast { 102 namespace stopScreencast {
105 extern const char kName[]; 103 extern const char kName[];
106 } // stopScreencast 104 } // stopScreencast
107 105
108 namespace screencastFrame { 106 namespace screencastFrame {
109 extern const char kName[]; 107 extern const char kName[];
110 } // screencastFrame 108 } // screencastFrame
111 109
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 147
150 namespace getInfo { 148 namespace getInfo {
151 extern const char kName[]; 149 extern const char kName[];
152 } // getInfo 150 } // getInfo
153 } // SystemInfo 151 } // SystemInfo
154 152
155 } // devtools 153 } // devtools
156 } // content 154 } // content
157 155
158 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ 156 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_
OLDNEW
« no previous file with comments | « no previous file | content/browser/devtools/devtools_protocol_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698