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 1690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1701 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; | 1701 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; |
1702 | 1702 |
1703 // The last requested size of the dialog as it was closed. | 1703 // The last requested size of the dialog as it was closed. |
1704 const char kCloudPrintDialogWidth[] = "cloud_print.dialog_size.width"; | 1704 const char kCloudPrintDialogWidth[] = "cloud_print.dialog_size.width"; |
1705 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height"; | 1705 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height"; |
1706 const char kCloudPrintSigninDialogWidth[] = | 1706 const char kCloudPrintSigninDialogWidth[] = |
1707 "cloud_print.signin_dialog_size.width"; | 1707 "cloud_print.signin_dialog_size.width"; |
1708 const char kCloudPrintSigninDialogHeight[] = | 1708 const char kCloudPrintSigninDialogHeight[] = |
1709 "cloud_print.signin_dialog_size.height"; | 1709 "cloud_print.signin_dialog_size.height"; |
1710 | 1710 |
| 1711 #if !defined(OS_ANDROID) |
| 1712 // The Chrome To Mobile service prefs; the device list and last update time. |
| 1713 const char kChromeToMobileDeviceList[] = "chrome_to_mobile.device_list"; |
| 1714 const char kChromeToMobileTimestamp[] = "chrome_to_mobile.timestamp"; |
| 1715 #endif |
| 1716 |
1711 // The list of BackgroundContents that should be loaded when the browser | 1717 // The list of BackgroundContents that should be loaded when the browser |
1712 // launches. | 1718 // launches. |
1713 const char kRegisteredBackgroundContents[] = "background_contents.registered"; | 1719 const char kRegisteredBackgroundContents[] = "background_contents.registered"; |
1714 | 1720 |
1715 #if !defined(OS_ANDROID) | 1721 #if !defined(OS_ANDROID) |
1716 // An int that stores how often we've shown the "Chrome is configured to | 1722 // An int that stores how often we've shown the "Chrome is configured to |
1717 // auto-launch" infobar. | 1723 // auto-launch" infobar. |
1718 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; | 1724 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; |
1719 #endif | 1725 #endif |
1720 | 1726 |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1990 const char kNetworkProfileLastWarningTime[] = | 1996 const char kNetworkProfileLastWarningTime[] = |
1991 "network_profile.last_warning_time"; | 1997 "network_profile.last_warning_time"; |
1992 | 1998 |
1993 #if defined(OS_MACOSX) | 1999 #if defined(OS_MACOSX) |
1994 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. | 2000 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. |
1995 const char kMacLeopardObsoleteInfobarLastShown[] = | 2001 const char kMacLeopardObsoleteInfobarLastShown[] = |
1996 "mac_105_obsolete_infobar_last_shown"; | 2002 "mac_105_obsolete_infobar_last_shown"; |
1997 #endif // defined(OS_MACOSX) | 2003 #endif // defined(OS_MACOSX) |
1998 | 2004 |
1999 } // namespace prefs | 2005 } // namespace prefs |
OLD | NEW |