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

Side by Side Diff: base/base_switches.cc

Issue 2585633004: ozone: Allow ozone evdev/kvm features to be enabled without running on ChromeOS. (Closed)
Patch Set: fix bad rebase Created 4 years 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 #include "base/base_switches.h" 5 #include "base/base_switches.h"
6 #include "build/build_config.h" 6 #include "build/build_config.h"
7 7
8 namespace switches { 8 namespace switches {
9 9
10 // Disables the crash reporting. 10 // Disables the crash reporting.
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 const char kDisableUsbKeyboardDetect[] = "disable-usb-keyboard-detect"; 104 const char kDisableUsbKeyboardDetect[] = "disable-usb-keyboard-detect";
105 #endif 105 #endif
106 106
107 #if defined(OS_POSIX) 107 #if defined(OS_POSIX)
108 // Used for turning on Breakpad crash reporting in a debug environment where 108 // Used for turning on Breakpad crash reporting in a debug environment where
109 // crash reporting is typically compiled but disabled. 109 // crash reporting is typically compiled but disabled.
110 const char kEnableCrashReporterForTesting[] = 110 const char kEnableCrashReporterForTesting[] =
111 "enable-crash-reporter-for-testing"; 111 "enable-crash-reporter-for-testing";
112 #endif 112 #endif
113 113
114 #if defined(OS_CHROMEOS)
115 // Force system compositor mode when set.
116 const char kEnableSystemCompositorMode[] = "enable-system-compositor-mode";
117
118 // Force disabling of system compositor mode when set.
119 const char kDisableSystemCompositorMode[] = "disable-system-compositor-mode";
120 #endif
121
114 } // namespace switches 122 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698