| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 1366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1377 | 1377 |
| 1378 // Specifies what users should maximize the NTP web store promo. | 1378 // Specifies what users should maximize the NTP web store promo. |
| 1379 const char kNTPWebStorePromoUserGroup[] = "ntp.webstorepromo.usergroup"; | 1379 const char kNTPWebStorePromoUserGroup[] = "ntp.webstorepromo.usergroup"; |
| 1380 | 1380 |
| 1381 // Customized app page names that appear on the New Tab Page. | 1381 // Customized app page names that appear on the New Tab Page. |
| 1382 const char kNTPAppPageNames[] = "ntp.app_page_names"; | 1382 const char kNTPAppPageNames[] = "ntp.app_page_names"; |
| 1383 | 1383 |
| 1384 // When true, web store promos will never be shown. | 1384 // When true, web store promos will never be shown. |
| 1385 const char kNTPHideWebStorePromo[] = "ntp.hide_webstore_promo"; | 1385 const char kNTPHideWebStorePromo[] = "ntp.hide_webstore_promo"; |
| 1386 | 1386 |
| 1387 // The most up-to-date GPU blacklist downloaded from the web, which replaces | |
| 1388 // the one that's installed with chrome. | |
| 1389 const char kGpuBlacklist[] = "gpu_blacklist"; | |
| 1390 | |
| 1391 // Last time of update of gpu_blacklist. | |
| 1392 const char kGpuBlacklistUpdate[] = "gpu_blacklist_update"; | |
| 1393 | |
| 1394 const char kDevToolsDisabled[] = "devtools.disabled"; | 1387 const char kDevToolsDisabled[] = "devtools.disabled"; |
| 1395 | 1388 |
| 1396 // A boolean specifying whether dev tools window should be opened docked. | 1389 // A boolean specifying whether dev tools window should be opened docked. |
| 1397 const char kDevToolsOpenDocked[] = "devtools.open_docked"; | 1390 const char kDevToolsOpenDocked[] = "devtools.open_docked"; |
| 1398 | 1391 |
| 1399 // Integer location of the split bar in the browser view. | 1392 // Integer location of the split bar in the browser view. |
| 1400 const char kDevToolsSplitLocation[] = "devtools.split_location"; | 1393 const char kDevToolsSplitLocation[] = "devtools.split_location"; |
| 1401 | 1394 |
| 1402 // 64-bit integer serialization of the base::Time when the last sync occurred. | 1395 // 64-bit integer serialization of the base::Time when the last sync occurred. |
| 1403 const char kSyncLastSyncedTime[] = "sync.last_synced_time"; | 1396 const char kSyncLastSyncedTime[] = "sync.last_synced_time"; |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1685 | 1678 |
| 1686 // String that represents the recovery component last downloaded version. This | 1679 // String that represents the recovery component last downloaded version. This |
| 1687 // takes the usual 'a.b.c.d' notation. | 1680 // takes the usual 'a.b.c.d' notation. |
| 1688 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1681 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
| 1689 | 1682 |
| 1690 // String that stores the component updater last known state. This is used for | 1683 // String that stores the component updater last known state. This is used for |
| 1691 // troubleshooting. | 1684 // troubleshooting. |
| 1692 const char kComponentUpdaterState[] = "component_updater.state"; | 1685 const char kComponentUpdaterState[] = "component_updater.state"; |
| 1693 | 1686 |
| 1694 } // namespace prefs | 1687 } // namespace prefs |
| OLD | NEW |