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

Side by Side Diff: chromeos/chromeos_switches.h

Issue 2648263007: Add a flag to specify whether to show ARC Files app in launcher. (Closed)
Patch Set: Created 3 years, 11 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 #ifndef CHROMEOS_CHROMEOS_SWITCHES_H_ 5 #ifndef CHROMEOS_CHROMEOS_SWITCHES_H_
6 #define CHROMEOS_CHROMEOS_SWITCHES_H_ 6 #define CHROMEOS_CHROMEOS_SWITCHES_H_
7 7
8 #include "base/memory/memory_pressure_monitor_chromeos.h" 8 #include "base/memory/memory_pressure_monitor_chromeos.h"
9 #include "chromeos/chromeos_export.h" 9 #include "chromeos/chromeos_export.h"
10 10
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 CHROMEOS_EXPORT extern const char kLoginUser[]; 114 CHROMEOS_EXPORT extern const char kLoginUser[];
115 CHROMEOS_EXPORT extern const char kMemoryPressureThresholds[]; 115 CHROMEOS_EXPORT extern const char kMemoryPressureThresholds[];
116 CHROMEOS_EXPORT extern const char kNaturalScrollDefault[]; 116 CHROMEOS_EXPORT extern const char kNaturalScrollDefault[];
117 CHROMEOS_EXPORT extern const char kNoteTakingAppIds[]; 117 CHROMEOS_EXPORT extern const char kNoteTakingAppIds[];
118 CHROMEOS_EXPORT extern const char kOobeBootstrappingMaster[]; 118 CHROMEOS_EXPORT extern const char kOobeBootstrappingMaster[];
119 CHROMEOS_EXPORT extern const char kOobeGuestSession[]; 119 CHROMEOS_EXPORT extern const char kOobeGuestSession[];
120 CHROMEOS_EXPORT extern const char kOobeSkipPostLogin[]; 120 CHROMEOS_EXPORT extern const char kOobeSkipPostLogin[];
121 CHROMEOS_EXPORT extern const char kOobeTimerInterval[]; 121 CHROMEOS_EXPORT extern const char kOobeTimerInterval[];
122 CHROMEOS_EXPORT extern const char kPowerStub[]; 122 CHROMEOS_EXPORT extern const char kPowerStub[];
123 CHROMEOS_EXPORT extern const char kShillStub[]; 123 CHROMEOS_EXPORT extern const char kShillStub[];
124 CHROMEOS_EXPORT extern const char kShowArcFilesApp[];
124 CHROMEOS_EXPORT extern const char kSmsTestMessages[]; 125 CHROMEOS_EXPORT extern const char kSmsTestMessages[];
125 CHROMEOS_EXPORT extern const char kStubCrosSettings[]; 126 CHROMEOS_EXPORT extern const char kStubCrosSettings[];
126 CHROMEOS_EXPORT extern const char kSystemDevMode[]; 127 CHROMEOS_EXPORT extern const char kSystemDevMode[];
127 CHROMEOS_EXPORT extern const char kTestAutoUpdateUI[]; 128 CHROMEOS_EXPORT extern const char kTestAutoUpdateUI[];
128 CHROMEOS_EXPORT extern const char kAttestationServer[]; 129 CHROMEOS_EXPORT extern const char kAttestationServer[];
129 CHROMEOS_EXPORT extern const char kWakeOnWifiPacket[]; 130 CHROMEOS_EXPORT extern const char kWakeOnWifiPacket[];
130 CHROMEOS_EXPORT extern const char kForceSystemCompositorMode[]; 131 CHROMEOS_EXPORT extern const char kForceSystemCompositorMode[];
131 132
132 // Returns true if the system should wake in response to wifi traffic. 133 // Returns true if the system should wake in response to wifi traffic.
133 CHROMEOS_EXPORT bool WakeOnWifiEnabled(); 134 CHROMEOS_EXPORT bool WakeOnWifiEnabled();
134 135
135 // Returns true if memory pressure handling is enabled. 136 // Returns true if memory pressure handling is enabled.
136 CHROMEOS_EXPORT bool MemoryPressureHandlingEnabled(); 137 CHROMEOS_EXPORT bool MemoryPressureHandlingEnabled();
137 138
138 // Returns thresholds for determining if the system is under memory pressure. 139 // Returns thresholds for determining if the system is under memory pressure.
139 CHROMEOS_EXPORT base::chromeos::MemoryPressureMonitor::MemoryPressureThresholds 140 CHROMEOS_EXPORT base::chromeos::MemoryPressureMonitor::MemoryPressureThresholds
140 GetMemoryPressureThresholds(); 141 GetMemoryPressureThresholds();
141 142
142 // Returns true if flags are set indicating that stored user keys are being 143 // Returns true if flags are set indicating that stored user keys are being
143 // converted to GAIA IDs. 144 // converted to GAIA IDs.
144 CHROMEOS_EXPORT bool IsGaiaIdMigrationStarted(); 145 CHROMEOS_EXPORT bool IsGaiaIdMigrationStarted();
145 146
146 } // namespace switches 147 } // namespace switches
147 } // namespace chromeos 148 } // namespace chromeos
148 149
149 #endif // CHROMEOS_CHROMEOS_SWITCHES_H_ 150 #endif // CHROMEOS_CHROMEOS_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698