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

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

Issue 23240002: Backend for DevTools quota managements. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 | 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 #include "content/browser/devtools/devtools_protocol_constants.h" 5 #include "content/browser/devtools/devtools_protocol_constants.h"
6 6
7 namespace content { 7 namespace content {
8 namespace devtools { 8 namespace devtools {
9 9
10 const char kParamX[] = "x"; 10 const char kParamX[] = "x";
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 namespace stopScreencast { 109 namespace stopScreencast {
110 const char kName[] = "Page.stopScreencast"; 110 const char kName[] = "Page.stopScreencast";
111 } // stopScreencast 111 } // stopScreencast
112 112
113 namespace screencastFrame { 113 namespace screencastFrame {
114 const char kName[] = "Page.screencastFrame"; 114 const char kName[] = "Page.screencastFrame";
115 } // screencastFrame 115 } // screencastFrame
116 116
117 } // Page 117 } // Page
118 118
119 namespace Quota {
120 namespace queryUsageAndQuota {
121 const char kName[] = "Quota.queryUsageAndQuota";
pfeldman 2013/09/16 14:15:36 Lets define this on Page domain.
SeRya 2013/09/17 12:44:55 Done.
122 const char kParamSecurityOrigin[] = "securityOrigin";
123 } // queryUsageAndQuota
124 } // Quota
125
119 namespace Worker { 126 namespace Worker {
120 127
121 namespace disconnectedFromWorker { 128 namespace disconnectedFromWorker {
122 const char kName[] = "Worker.disconnectedFromWorker"; 129 const char kName[] = "Worker.disconnectedFromWorker";
123 } // disconnectedFromWorker 130 } // disconnectedFromWorker
124 131
125 } // Worker 132 } // Worker
126 133
127 namespace Tracing { 134 namespace Tracing {
128 const char kName[] = "Tracing"; 135 const char kName[] = "Tracing";
(...skipping 23 matching lines...) Expand all
152 const char kName[] = "SystemInfo"; 159 const char kName[] = "SystemInfo";
153 160
154 namespace getInfo { 161 namespace getInfo {
155 const char kName[] = "SystemInfo.getInfo"; 162 const char kName[] = "SystemInfo.getInfo";
156 } // getInfo 163 } // getInfo
157 } // SystemInfo 164 } // SystemInfo
158 165
159 } // devtools 166 } // devtools
160 } // content 167 } // content
161 168
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698