OLD | NEW |
---|---|
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 Loading... | |
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 // Parts of the ScreenSaver proto. Define the extension ID of the screen saver | |
Mattias Nissler (ping if slow)
2012/03/01 19:58:10
s/Define/Defines/
Mattias Nissler (ping if slow)
2012/03/01 19:58:10
s/Parts/Values from/
pastarmovj
2012/03/05 17:02:55
Done.
| |
56 // extensions 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 // Parts of the ForcedLogoutTimeouts proto. Define the timeouts before a user | |
Mattias Nissler (ping if slow)
2012/03/01 19:58:10
s/Parts/Values from/
Mattias Nissler (ping if slow)
2012/03/01 19:58:10
s/Define/Defines/
pastarmovj
2012/03/05 17:02:55
Done.
| |
61 // is logged out after some period of inactivity as well as the duration of a | |
62 // 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 |
OLD | NEW |