| 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 kShowFullscreenToolbar[] = "browser.show_fullscreen_toolbar"; |
| 391 |
| 392 // TODO(spqchan): Remove this, see crbug.com/590827. |
| 393 // This is being migrated to kShowFullscreenToolbar. |
| 390 const char kHideFullscreenToolbar[] = "browser.hide_fullscreen_toolbar"; | 394 const char kHideFullscreenToolbar[] = "browser.hide_fullscreen_toolbar"; |
| 391 #endif | 395 #endif |
| 392 | 396 |
| 393 // Boolean which specifies whether we should ask the user if we should download | 397 // Boolean which specifies whether we should ask the user if we should download |
| 394 // a file (true) or just download it automatically. | 398 // a file (true) or just download it automatically. |
| 395 const char kPromptForDownload[] = "download.prompt_for_download"; | 399 const char kPromptForDownload[] = "download.prompt_for_download"; |
| 396 | 400 |
| 397 // A boolean pref set to true if we're using Link Doctor error pages. | 401 // A boolean pref set to true if we're using Link Doctor error pages. |
| 398 const char kAlternateErrorPagesEnabled[] = "alternate_error_pages.enabled"; | 402 const char kAlternateErrorPagesEnabled[] = "alternate_error_pages.enabled"; |
| 399 | 403 |
| (...skipping 1776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2176 const char kMediaRouterEnableCloudServices[] = | 2180 const char kMediaRouterEnableCloudServices[] = |
| 2177 "media_router.cloudservices.enabled"; | 2181 "media_router.cloudservices.enabled"; |
| 2178 #endif // defined(GOOGLE_CHROME_BUILD) | 2182 #endif // defined(GOOGLE_CHROME_BUILD) |
| 2179 // Whether or not the Media Router first run flow has been acknowledged by the | 2183 // Whether or not the Media Router first run flow has been acknowledged by the |
| 2180 // user. | 2184 // user. |
| 2181 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2185 const char kMediaRouterFirstRunFlowAcknowledged[] = |
| 2182 "media_router.firstrunflow.acknowledged"; | 2186 "media_router.firstrunflow.acknowledged"; |
| 2183 #endif | 2187 #endif |
| 2184 | 2188 |
| 2185 } // namespace prefs | 2189 } // namespace prefs |
| OLD | NEW |