| 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/macros.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
| 10 | 10 |
| (...skipping 1476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1487 // Keeps track of snapshot documents collapsed state in the Other Devices menu. | 1487 // Keeps track of snapshot documents collapsed state in the Other Devices menu. |
| 1488 const char kNtpCollapsedSnapshotDocument[] = "ntp.collapsed_snapshot_document"; | 1488 const char kNtpCollapsedSnapshotDocument[] = "ntp.collapsed_snapshot_document"; |
| 1489 | 1489 |
| 1490 // Keeps track of sync promo collapsed state in the Other Devices menu. | 1490 // Keeps track of sync promo collapsed state in the Other Devices menu. |
| 1491 const char kNtpCollapsedSyncPromo[] = "ntp.collapsed_sync_promo"; | 1491 const char kNtpCollapsedSyncPromo[] = "ntp.collapsed_sync_promo"; |
| 1492 #endif | 1492 #endif |
| 1493 | 1493 |
| 1494 // Which page should be visible on the new tab page v4 | 1494 // Which page should be visible on the new tab page v4 |
| 1495 const char kNtpShownPage[] = "ntp.shown_page"; | 1495 const char kNtpShownPage[] = "ntp.shown_page"; |
| 1496 | 1496 |
| 1497 #if BUILDFLAG(ANDROID_JAVA_UI) | |
| 1498 // Ordered list of website suggestions shown on the new tab page that will allow | |
| 1499 // retaining the order even if the suggestions change over time. | |
| 1500 const char kNTPSuggestionsURL[] = "ntp.suggestions_url"; | |
| 1501 | |
| 1502 // Whether the suggestion was derived from personal data. | |
| 1503 const char kNTPSuggestionsIsPersonal[] = "ntp.suggestions_is_personal"; | |
| 1504 #endif | |
| 1505 | |
| 1506 // A private RSA key for ADB handshake. | 1497 // A private RSA key for ADB handshake. |
| 1507 const char kDevToolsAdbKey[] = "devtools.adb_key"; | 1498 const char kDevToolsAdbKey[] = "devtools.adb_key"; |
| 1508 | 1499 |
| 1509 const char kDevToolsDisabled[] = "devtools.disabled"; | 1500 const char kDevToolsDisabled[] = "devtools.disabled"; |
| 1510 | 1501 |
| 1511 // Determines whether devtools should be discovering usb devices for | 1502 // Determines whether devtools should be discovering usb devices for |
| 1512 // remote debugging at chrome://inspect. | 1503 // remote debugging at chrome://inspect. |
| 1513 const char kDevToolsDiscoverUsbDevicesEnabled[] = | 1504 const char kDevToolsDiscoverUsbDevicesEnabled[] = |
| 1514 "devtools.discover_usb_devices"; | 1505 "devtools.discover_usb_devices"; |
| 1515 | 1506 |
| (...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2204 const char kMediaRouterEnableCloudServices[] = | 2195 const char kMediaRouterEnableCloudServices[] = |
| 2205 "media_router.cloudservices.enabled"; | 2196 "media_router.cloudservices.enabled"; |
| 2206 #endif // defined(GOOGLE_CHROME_BUILD) | 2197 #endif // defined(GOOGLE_CHROME_BUILD) |
| 2207 // Whether or not the Media Router first run flow has been acknowledged by the | 2198 // Whether or not the Media Router first run flow has been acknowledged by the |
| 2208 // user. | 2199 // user. |
| 2209 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2200 const char kMediaRouterFirstRunFlowAcknowledged[] = |
| 2210 "media_router.firstrunflow.acknowledged"; | 2201 "media_router.firstrunflow.acknowledged"; |
| 2211 #endif | 2202 #endif |
| 2212 | 2203 |
| 2213 } // namespace prefs | 2204 } // namespace prefs |
| OLD | NEW |