Chromium Code Reviews| 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 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 378 // "" (empty string) - undecided | 378 // "" (empty string) - undecided |
| 379 // "true" - opt-in (enabled) | 379 // "true" - opt-in (enabled) |
| 380 const char kContextualSearchEnabled[] = "search.contextual_search_enabled"; | 380 const char kContextualSearchEnabled[] = "search.contextual_search_enabled"; |
| 381 #endif | 381 #endif |
| 382 | 382 |
| 383 #if defined(OS_MACOSX) | 383 #if defined(OS_MACOSX) |
| 384 // Boolean that indicates whether the browser should put up a confirmation | 384 // Boolean that indicates whether the browser should put up a confirmation |
| 385 // window when the user is attempting to quit. Mac only. | 385 // window when the user is attempting to quit. Mac only. |
| 386 const char kConfirmToQuitEnabled[] = "browser.confirm_to_quit"; | 386 const char kConfirmToQuitEnabled[] = "browser.confirm_to_quit"; |
| 387 | 387 |
| 388 // Boolean that indicates whether the browser should hide the toolbar when it's | 388 // Boolean that indicates whether the browser should show the toolbar when it's |
| 389 // in fullscreen. Mac only. | 389 // in fullscreen. Mac only. |
| 390 const char kHideFullscreenToolbar[] = "browser.hide_fullscreen_toolbar"; | 390 const char kShowFullscreenToolbar[] = "browser.show_fullscreen_toolbar"; |
|
Robert Sesek
2016/02/26 20:42:27
Did this pref make it to stable? Should the value
spqchan
2016/02/26 23:24:59
Not yet, but given the amount of time we have left
Robert Sesek
2016/02/29 18:05:34
Will it make it to stable? If not, then I don't th
| |
| 391 #endif | 391 #endif |
| 392 | 392 |
| 393 // Boolean which specifies whether we should ask the user if we should download | 393 // Boolean which specifies whether we should ask the user if we should download |
| 394 // a file (true) or just download it automatically. | 394 // a file (true) or just download it automatically. |
| 395 const char kPromptForDownload[] = "download.prompt_for_download"; | 395 const char kPromptForDownload[] = "download.prompt_for_download"; |
| 396 | 396 |
| 397 // A boolean pref set to true if we're using Link Doctor error pages. | 397 // A boolean pref set to true if we're using Link Doctor error pages. |
| 398 const char kAlternateErrorPagesEnabled[] = "alternate_error_pages.enabled"; | 398 const char kAlternateErrorPagesEnabled[] = "alternate_error_pages.enabled"; |
| 399 | 399 |
| 400 // An adaptively identified list of domain names to be pre-fetched during the | 400 // An adaptively identified list of domain names to be pre-fetched during the |
| (...skipping 1775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2176 const char kMediaRouterEnableCloudServices[] = | 2176 const char kMediaRouterEnableCloudServices[] = |
| 2177 "media_router.cloudservices.enabled"; | 2177 "media_router.cloudservices.enabled"; |
| 2178 #endif // defined(GOOGLE_CHROME_BUILD) | 2178 #endif // defined(GOOGLE_CHROME_BUILD) |
| 2179 // Whether or not the Media Router first run flow has been acknowledged by the | 2179 // Whether or not the Media Router first run flow has been acknowledged by the |
| 2180 // user. | 2180 // user. |
| 2181 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2181 const char kMediaRouterFirstRunFlowAcknowledged[] = |
| 2182 "media_router.firstrunflow.acknowledged"; | 2182 "media_router.firstrunflow.acknowledged"; |
| 2183 #endif | 2183 #endif |
| 2184 | 2184 |
| 2185 } // namespace prefs | 2185 } // namespace prefs |
| OLD | NEW |