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

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

Issue 1000203007: Set a "metrics_client_id" crash key instead of "guid" on Mac OS X (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review feedback (isherman) Created 5 years, 9 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
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 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) 361 #if defined(OS_LINUX) && !defined(OS_CHROMEOS)
362 extern const char kMigrateDataDirForSxS[]; 362 extern const char kMigrateDataDirForSxS[];
363 #endif 363 #endif
364 364
365 #if defined(OS_MACOSX) 365 #if defined(OS_MACOSX)
366 extern const char kAppsKeepChromeAliveInTests[]; 366 extern const char kAppsKeepChromeAliveInTests[];
367 extern const char kHostedAppQuitNotification[]; 367 extern const char kHostedAppQuitNotification[];
368 extern const char kDisableHostedAppShimCreation[]; 368 extern const char kDisableHostedAppShimCreation[];
369 extern const char kDisableSystemFullscreenForTesting[]; 369 extern const char kDisableSystemFullscreenForTesting[];
370 extern const char kRelauncherProcess[]; 370 extern const char kRelauncherProcess[];
371 extern const char kMetricsClientID[];
371 #endif 372 #endif
372 373
373 #if defined(OS_WIN) 374 #if defined(OS_WIN)
374 extern const char kEnableCloudPrintXps[]; 375 extern const char kEnableCloudPrintXps[];
375 extern const char kEnableProfileShortcutManager[]; 376 extern const char kEnableProfileShortcutManager[];
376 extern const char kForceDesktop[]; 377 extern const char kForceDesktop[];
377 extern const char kForceImmersive[]; 378 extern const char kForceImmersive[];
378 extern const char kRelaunchShortcut[]; 379 extern const char kRelaunchShortcut[];
379 extern const char kViewerLaunchViaAppId[]; 380 extern const char kViewerLaunchViaAppId[];
380 extern const char kWaitForMutex[]; 381 extern const char kWaitForMutex[];
(...skipping 25 matching lines...) Expand all
406 #if defined(OS_CHROMEOS) 407 #if defined(OS_CHROMEOS)
407 bool PowerOverlayEnabled(); 408 bool PowerOverlayEnabled();
408 #endif 409 #endif
409 410
410 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 411 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
411 // alphabetical order, or in one of the ifdefs (also in order in each section). 412 // alphabetical order, or in one of the ifdefs (also in order in each section).
412 413
413 } // namespace switches 414 } // namespace switches
414 415
415 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 416 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698