| 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/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 1727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1738 | 1738 |
| 1739 // The last requested size of the dialog as it was closed. | 1739 // The last requested size of the dialog as it was closed. |
| 1740 const char kCloudPrintDialogWidth[] = "cloud_print.dialog_size.width"; | 1740 const char kCloudPrintDialogWidth[] = "cloud_print.dialog_size.width"; |
| 1741 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height"; | 1741 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height"; |
| 1742 const char kCloudPrintSigninDialogWidth[] = | 1742 const char kCloudPrintSigninDialogWidth[] = |
| 1743 "cloud_print.signin_dialog_size.width"; | 1743 "cloud_print.signin_dialog_size.width"; |
| 1744 const char kCloudPrintSigninDialogHeight[] = | 1744 const char kCloudPrintSigninDialogHeight[] = |
| 1745 "cloud_print.signin_dialog_size.height"; | 1745 "cloud_print.signin_dialog_size.height"; |
| 1746 | 1746 |
| 1747 #if !defined(OS_ANDROID) | 1747 #if !defined(OS_ANDROID) |
| 1748 // The Chrome To Mobile service prefs; the device list and last update time. | 1748 // The Chrome To Mobile service mobile device list pref. |
| 1749 const char kChromeToMobileDeviceList[] = "chrome_to_mobile.device_list"; | 1749 const char kChromeToMobileDeviceList[] = "chrome_to_mobile.device_list"; |
| 1750 const char kChromeToMobileTimestamp[] = "chrome_to_mobile.timestamp"; | |
| 1751 #endif | 1750 #endif |
| 1752 | 1751 |
| 1753 // The list of BackgroundContents that should be loaded when the browser | 1752 // The list of BackgroundContents that should be loaded when the browser |
| 1754 // launches. | 1753 // launches. |
| 1755 const char kRegisteredBackgroundContents[] = "background_contents.registered"; | 1754 const char kRegisteredBackgroundContents[] = "background_contents.registered"; |
| 1756 | 1755 |
| 1757 #if !defined(OS_ANDROID) | 1756 #if !defined(OS_ANDROID) |
| 1758 // An int that stores how often we've shown the "Chrome is configured to | 1757 // An int that stores how often we've shown the "Chrome is configured to |
| 1759 // auto-launch" infobar. | 1758 // auto-launch" infobar. |
| 1760 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; | 1759 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2040 | 2039 |
| 2041 // Counts how many more times the 'profile on a network share' warning should be | 2040 // Counts how many more times the 'profile on a network share' warning should be |
| 2042 // shown to the user before the next silence period. | 2041 // shown to the user before the next silence period. |
| 2043 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 2042 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
| 2044 // Tracks the time of the last shown warning. Used to reset | 2043 // Tracks the time of the last shown warning. Used to reset |
| 2045 // |network_profile.warnings_left| after a silence period. | 2044 // |network_profile.warnings_left| after a silence period. |
| 2046 const char kNetworkProfileLastWarningTime[] = | 2045 const char kNetworkProfileLastWarningTime[] = |
| 2047 "network_profile.last_warning_time"; | 2046 "network_profile.last_warning_time"; |
| 2048 | 2047 |
| 2049 } // namespace prefs | 2048 } // namespace prefs |
| OLD | NEW |