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

Side by Side Diff: chromeos/settings/cros_settings_names.cc

Issue 1775023002: Enterprise policy to prevent queries to the Quirks Server (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: First round of reviews Created 4 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 "chromeos/settings/cros_settings_names.h" 5 #include "chromeos/settings/cros_settings_names.h"
6 6
7 namespace chromeos { 7 namespace chromeos {
8 8
9 const char kCrosSettingsPrefix[] = "cros."; 9 const char kCrosSettingsPrefix[] = "cros.";
10 10
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 const char kExtensionCacheSize[] = "cros.device.extension_cache_size"; 176 const char kExtensionCacheSize[] = "cros.device.extension_cache_size";
177 177
178 // An integer pref that sets the display rotation at startup to a certain 178 // An integer pref that sets the display rotation at startup to a certain
179 // value, overriding the user value: 179 // value, overriding the user value:
180 // 0 = 0 degrees rotation 180 // 0 = 0 degrees rotation
181 // 1 = 90 degrees clockwise rotation 181 // 1 = 90 degrees clockwise rotation
182 // 2 = 180 degrees rotation 182 // 2 = 180 degrees rotation
183 // 3 = 270 degrees clockwise rotation 183 // 3 = 270 degrees clockwise rotation
184 const char kDisplayRotationDefault[] = "cros.display_rotation_default"; 184 const char kDisplayRotationDefault[] = "cros.display_rotation_default";
185 185
186 // A boolean pref to enable any pings or requests to the Quirks Server.
187 const char kDeviceQuirksDownloadEnabled[] =
188 "cros.device.quirks_download_enabled";
189
186 } // namespace chromeos 190 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698