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

Side by Side Diff: chrome/browser/chromeos/cros_settings_names.cc

Issue 9423043: Add the protobufs for the set of session timeout policies planned for the kiosk mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments and did some more cleanup. Created 8 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 | Annotate | Revision Log
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 "chrome/browser/chromeos/cros_settings_names.h" 5 #include "chrome/browser/chromeos/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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 // at boot mode should be reported along with device policy requests. 45 // at boot mode should be reported along with device policy requests.
46 const char kReportDeviceBootMode[] = "cros.device_status.report_boot_mode"; 46 const char kReportDeviceBootMode[] = "cros.device_status.report_boot_mode";
47 47
48 // A list of dictionaries, each detailing one extension to install as part of 48 // A list of dictionaries, each detailing one extension to install as part of
49 // the AppPack and including the following fields: 49 // the AppPack and including the following fields:
50 // "extension-id": ID of the extension to install 50 // "extension-id": ID of the extension to install
51 // "update-url": URL to check the extension's version and download location 51 // "update-url": URL to check the extension's version and download location
52 // "key-checksum": checksum of the extension's CRX public key, encoded in hex. 52 // "key-checksum": checksum of the extension's CRX public key, encoded in hex.
53 const char kAppPack[] = "cros.app_pack"; 53 const char kAppPack[] = "cros.app_pack";
54 54
55 // Values from the ScreenSaver proto. Defines the extension ID of the screen
56 // saver extension and the timeout before the screen saver should be started.
57 const char kScreenSaverExtensionId[] = "cros.screen_saver.extension_id";
58 const char kScreenSaverTimeout[] = "cros.screen_saver.timeout";
59
60 // Values from the ForcedLogoutTimeouts proto. Defines the timeouts before a
61 // user is logged out after some period of inactivity as well as the duration of
62 // a warning message informing the user about the pending logout.
63 const char kIdleLogoutTimeout[] = "cros.idle_logout.timeout";
64 const char kIdleLogoutWarningDuration[] = "cros.idle_logout.warning_duration";
65
55 } // namespace chromeos 66 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/cros_settings_names.h ('k') | chrome/browser/chromeos/device_settings_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698