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

Unified Diff: chrome/browser/chromeos/cros_settings_names.cc

Issue 10824112: Move Chrome OS device settings stuff to chrome/browser/chromeos/settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/cros_settings_names.h ('k') | chrome/browser/chromeos/cros_settings_provider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros_settings_names.cc
diff --git a/chrome/browser/chromeos/cros_settings_names.cc b/chrome/browser/chromeos/cros_settings_names.cc
deleted file mode 100644
index fd6a0fb4240d8b5d26e4ce6058cc58ba9ebcbcb0..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/cros_settings_names.cc
+++ /dev/null
@@ -1,79 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/chromeos/cros_settings_names.h"
-
-namespace chromeos {
-
-const char kCrosSettingsPrefix[] = "cros.";
-
-// All cros.accounts.* settings are stored in SignedSettings.
-const char kAccountsPrefAllowGuest[] = "cros.accounts.allowBWSI";
-const char kAccountsPrefAllowNewUser[] = "cros.accounts.allowGuest";
-const char kAccountsPrefShowUserNamesOnSignIn[]
- = "cros.accounts.showUserNamesOnSignIn";
-const char kAccountsPrefUsers[] = "cros.accounts.users";
-const char kAccountsPrefEphemeralUsersEnabled[] =
- "cros.accounts.ephemeralUsersEnabled";
-
-// Name of signed setting persisted on device, writeable only by owner.
-const char kSettingProxyEverywhere[] = "cros.proxy.everywhere";
-
-// All cros.signed.* settings are stored in SignedSettings.
-const char kSignedDataRoamingEnabled[] = "cros.signed.data_roaming_enabled";
-
-const char kSystemTimezone[] = "cros.system.timezone";
-
-const char kDeviceOwner[] = "cros.device.owner";
-
-const char kStatsReportingPref[] = "cros.metrics.reportingEnabled";
-
-const char kReleaseChannel[] = "cros.system.releaseChannel";
-const char kReleaseChannelDelegated[] = "cros.system.releaseChannelDelegated";
-
-// A boolean pref that indicates whether OS & firmware version info should be
-// reported along with device policy requests.
-const char kReportDeviceVersionInfo[] =
- "cros.device_status.report_version_info";
-
-// A boolean pref that indicates whether device activity times should be
-// recorded and reported along with device policy requests.
-const char kReportDeviceActivityTimes[] =
- "cros.device_status.report_activity_times";
-
-// A boolean pref that indicates whether the state of the dev mode switch at
-// boot should be reported along with device policy requests.
-const char kReportDeviceBootMode[] = "cros.device_status.report_boot_mode";
-
-// A boolean pref that indicates whether the current location should be reported
-// along with device policy requests.
-const char kReportDeviceLocation[] = "cros.device_status.report_location";
-
-// A list of dictionaries, each detailing one extension to install as part of
-// the AppPack and including the following fields:
-// "extension-id": ID of the extension to install
-// "update-url": URL to check the extension's version and download location
-// "key-checksum": checksum of the extension's CRX public key, encoded in hex.
-const char kAppPack[] = "cros.app_pack";
-
-// Values from the ScreenSaver proto. Defines the extension ID of the screen
-// saver extension and the timeout before the screen saver should be started.
-const char kScreenSaverExtensionId[] = "cros.screen_saver.extension_id";
-const char kScreenSaverTimeout[] = "cros.screen_saver.timeout";
-
-// Values from the ForcedLogoutTimeouts proto. Defines the timeouts before a
-// user is logged out after some period of inactivity as well as the duration of
-// a warning message informing the user about the pending logout.
-const char kIdleLogoutTimeout[] = "cros.idle_logout.timeout";
-const char kIdleLogoutWarningDuration[] = "cros.idle_logout.warning_duration";
-
-// Defines the set of URLs to be opened on login to the anonymous account used
-// if the device is in KIOSK mode.
-const char kStartUpUrls[] = "cros.start_up_urls";
-
-// This policy should not appear in the protobuf ever but is used internally to
-// signal that we are running in a "safe-mode" for policy recovery.
-const char kPolicyMissingMitigationMode[] =
- "cros.internal.policy_mitigation_mode";
-} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/cros_settings_names.h ('k') | chrome/browser/chromeos/cros_settings_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698