| 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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 // "false" - opt-out (disabled) | 375 // "false" - opt-out (disabled) |
| 376 // "" (empty string) - undecided | 376 // "" (empty string) - undecided |
| 377 // "true" - opt-in (enabled) | 377 // "true" - opt-in (enabled) |
| 378 const char kContextualSearchEnabled[] = "search.contextual_search_enabled"; | 378 const char kContextualSearchEnabled[] = "search.contextual_search_enabled"; |
| 379 #endif | 379 #endif |
| 380 | 380 |
| 381 #if defined(OS_MACOSX) | 381 #if defined(OS_MACOSX) |
| 382 // Boolean that indicates whether the browser should put up a confirmation | 382 // Boolean that indicates whether the browser should put up a confirmation |
| 383 // window when the user is attempting to quit. Mac only. | 383 // window when the user is attempting to quit. Mac only. |
| 384 const char kConfirmToQuitEnabled[] = "browser.confirm_to_quit"; | 384 const char kConfirmToQuitEnabled[] = "browser.confirm_to_quit"; |
| 385 |
| 386 // Boolean that indicates whether the browser should hide the toolbar when it's |
| 387 // in fullscreen. Mac only. |
| 388 const char kHideFullscreenToolbar[] = "browser.hide_fullscreen_toolbar"; |
| 385 #endif | 389 #endif |
| 386 | 390 |
| 387 // Boolean which specifies whether we should ask the user if we should download | 391 // Boolean which specifies whether we should ask the user if we should download |
| 388 // a file (true) or just download it automatically. | 392 // a file (true) or just download it automatically. |
| 389 const char kPromptForDownload[] = "download.prompt_for_download"; | 393 const char kPromptForDownload[] = "download.prompt_for_download"; |
| 390 | 394 |
| 391 // A boolean pref set to true if we're using Link Doctor error pages. | 395 // A boolean pref set to true if we're using Link Doctor error pages. |
| 392 const char kAlternateErrorPagesEnabled[] = "alternate_error_pages.enabled"; | 396 const char kAlternateErrorPagesEnabled[] = "alternate_error_pages.enabled"; |
| 393 | 397 |
| 394 // An adaptively identified list of domain names to be pre-fetched during the | 398 // An adaptively identified list of domain names to be pre-fetched during the |
| (...skipping 1767 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2162 #endif | 2166 #endif |
| 2163 | 2167 |
| 2164 #if defined(ENABLE_MEDIA_ROUTER) | 2168 #if defined(ENABLE_MEDIA_ROUTER) |
| 2165 // Whether or not the Media Router first run flow has been acknowledged by the | 2169 // Whether or not the Media Router first run flow has been acknowledged by the |
| 2166 // user. | 2170 // user. |
| 2167 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2171 const char kMediaRouterFirstRunFlowAcknowledged[] = |
| 2168 "media_router.firstrunflow.acknowledged"; | 2172 "media_router.firstrunflow.acknowledged"; |
| 2169 #endif | 2173 #endif |
| 2170 | 2174 |
| 2171 } // namespace prefs | 2175 } // namespace prefs |
| OLD | NEW |