| 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/features.h" | 9 #include "chrome/common/features.h" |
| 10 #include "chrome/common/pref_font_webkit_names.h" | 10 #include "chrome/common/pref_font_webkit_names.h" |
| (...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 437 | 437 |
| 438 #if defined(OS_MACOSX) | 438 #if defined(OS_MACOSX) |
| 439 // Boolean that indicates whether the browser should put up a confirmation | 439 // Boolean that indicates whether the browser should put up a confirmation |
| 440 // window when the user is attempting to quit. Mac only. | 440 // window when the user is attempting to quit. Mac only. |
| 441 const char kConfirmToQuitEnabled[] = "browser.confirm_to_quit"; | 441 const char kConfirmToQuitEnabled[] = "browser.confirm_to_quit"; |
| 442 | 442 |
| 443 // Boolean that indicates whether the browser should show the toolbar when it's | 443 // Boolean that indicates whether the browser should show the toolbar when it's |
| 444 // in fullscreen. Mac only. | 444 // in fullscreen. Mac only. |
| 445 const char kShowFullscreenToolbar[] = "browser.show_fullscreen_toolbar"; | 445 const char kShowFullscreenToolbar[] = "browser.show_fullscreen_toolbar"; |
| 446 | 446 |
| 447 // TODO(spqchan): Remove this, see crbug.com/590827. | |
| 448 // This is being migrated to kShowFullscreenToolbar. | |
| 449 const char kHideFullscreenToolbar[] = "browser.hide_fullscreen_toolbar"; | |
| 450 #endif | 447 #endif |
| 451 | 448 |
| 452 // Boolean which specifies whether we should ask the user if we should download | 449 // Boolean which specifies whether we should ask the user if we should download |
| 453 // a file (true) or just download it automatically. | 450 // a file (true) or just download it automatically. |
| 454 const char kPromptForDownload[] = "download.prompt_for_download"; | 451 const char kPromptForDownload[] = "download.prompt_for_download"; |
| 455 | 452 |
| 456 // A boolean pref set to true if we're using Link Doctor error pages. | 453 // A boolean pref set to true if we're using Link Doctor error pages. |
| 457 const char kAlternateErrorPagesEnabled[] = "alternate_error_pages.enabled"; | 454 const char kAlternateErrorPagesEnabled[] = "alternate_error_pages.enabled"; |
| 458 | 455 |
| 459 // An adaptively identified list of domain names to be pre-fetched during the | 456 // An adaptively identified list of domain names to be pre-fetched during the |
| (...skipping 2078 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2538 "settings_reset_prompt.last_triggered_for_homepage"; | 2535 "settings_reset_prompt.last_triggered_for_homepage"; |
| 2539 | 2536 |
| 2540 #if defined(OS_ANDROID) | 2537 #if defined(OS_ANDROID) |
| 2541 // Timestamp of the clipboard's last modified time, stored in base::Time's | 2538 // Timestamp of the clipboard's last modified time, stored in base::Time's |
| 2542 // internal format (int64) in local store. (I.e., this is not a per-profile | 2539 // internal format (int64) in local store. (I.e., this is not a per-profile |
| 2543 // pref.) | 2540 // pref.) |
| 2544 const char kClipboardLastModifiedTime[] = "ui.clipboard.last_modified_time"; | 2541 const char kClipboardLastModifiedTime[] = "ui.clipboard.last_modified_time"; |
| 2545 #endif | 2542 #endif |
| 2546 | 2543 |
| 2547 } // namespace prefs | 2544 } // namespace prefs |
| OLD | NEW |