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

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

Issue 21777003: DevTools: [Android] implement RenderWidgetHostViewAndroid::CopyFromCompositingSurface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix clang bots. Created 7 years, 4 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 | Annotate | Revision Log
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 25 matching lines...) Expand all
36 extern const char kName[]; 36 extern const char kName[];
37 extern const char kParamAccept[]; 37 extern const char kParamAccept[];
38 extern const char kParamPromptText[]; 38 extern const char kParamPromptText[];
39 } // handleJavaScriptDialog 39 } // handleJavaScriptDialog
40 namespace navigate { 40 namespace navigate {
41 extern const char kName[]; 41 extern const char kName[];
42 extern const char kParamUrl[]; 42 extern const char kParamUrl[];
43 } // navigate 43 } // navigate
44 namespace captureScreenshot { 44 namespace captureScreenshot {
45 extern const char kName[]; 45 extern const char kName[];
46 extern const char kParamFormat[];
47 extern const char kParamQuality[];
48 extern const char kParamScale[];
46 extern const char kResponseData[]; 49 extern const char kResponseData[];
47 } // captureScreenshot 50 } // captureScreenshot
48 } // Page 51 } // Page
49 52
50 namespace Tracing { 53 namespace Tracing {
51 extern const char kName[]; 54 extern const char kName[];
52 55
53 namespace start { 56 namespace start {
54 extern const char kName[]; 57 extern const char kName[];
55 extern const char kCategories[]; 58 extern const char kCategories[];
(...skipping 18 matching lines...) Expand all
74 namespace Worker { 77 namespace Worker {
75 namespace disconnectedFromWorker { 78 namespace disconnectedFromWorker {
76 extern const char kName[]; 79 extern const char kName[];
77 } // disconnectedFromWorker 80 } // disconnectedFromWorker
78 } // Worker 81 } // Worker
79 82
80 } // devtools 83 } // devtools
81 } // content 84 } // content
82 85
83 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_ 86 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_CONSTANTSH_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698