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

Side by Side Diff: chrome/common/chrome_switches.h

Issue 9125015: Implement profiler log writing at shutdown (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + Update Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // Defines all the command-line switches used by Chrome. 5 // Defines all the command-line switches used by Chrome.
6 6
7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_
8 #define CHROME_COMMON_CHROME_SWITCHES_H_ 8 #define CHROME_COMMON_CHROME_SWITCHES_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 extern const char kPrerenderModeSwitchValueAuto[]; 264 extern const char kPrerenderModeSwitchValueAuto[];
265 extern const char kPrerenderModeSwitchValueDisabled[]; 265 extern const char kPrerenderModeSwitchValueDisabled[];
266 extern const char kPrerenderModeSwitchValueEnabled[]; 266 extern const char kPrerenderModeSwitchValueEnabled[];
267 extern const char kPrerenderModeSwitchValuePrefetchOnly[]; 267 extern const char kPrerenderModeSwitchValuePrefetchOnly[];
268 extern const char kPrint[]; 268 extern const char kPrint[];
269 extern const char kProductVersion[]; 269 extern const char kProductVersion[];
270 extern const char kProfileDirectory[]; 270 extern const char kProfileDirectory[];
271 extern const char kProfilingAtStart[]; 271 extern const char kProfilingAtStart[];
272 extern const char kProfilingFile[]; 272 extern const char kProfilingFile[];
273 extern const char kProfilingFlush[]; 273 extern const char kProfilingFlush[];
274 extern const char kProfilingOutputFile[];
274 extern const char kPromoServerURL[]; 275 extern const char kPromoServerURL[];
275 extern const char kProxyAutoDetect[]; 276 extern const char kProxyAutoDetect[];
276 extern const char kProxyBypassList[]; 277 extern const char kProxyBypassList[];
277 extern const char kProxyPacUrl[]; 278 extern const char kProxyPacUrl[];
278 extern const char kProxyServer[]; 279 extern const char kProxyServer[];
279 extern const char kPurgeMemoryButton[]; 280 extern const char kPurgeMemoryButton[];
280 extern const char kReloadKilledTabs[]; 281 extern const char kReloadKilledTabs[];
281 extern const char kRemoteDebuggingFrontend[]; 282 extern const char kRemoteDebuggingFrontend[];
282 extern const char kRendererPrintPreview[]; 283 extern const char kRendererPrintPreview[];
283 extern const char kRestoreLastSession[]; 284 extern const char kRestoreLastSession[];
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 #if defined(USE_AURA) 405 #if defined(USE_AURA)
405 extern const char kTestCompositor[]; 406 extern const char kTestCompositor[];
406 #endif 407 #endif
407 408
408 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 409 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
409 // alphabetical order, or in one of the ifdefs (also in order in each section). 410 // alphabetical order, or in one of the ifdefs (also in order in each section).
410 411
411 } // namespace switches 412 } // namespace switches
412 413
413 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 414 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698