| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 namespace prefs { | 7 namespace prefs { |
| 8 | 8 |
| 9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
| 10 // These are attached to the user profile | 10 // These are attached to the user profile |
| (...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 const wchar_t kNumFoldersOnBookmarkBar[] = | 529 const wchar_t kNumFoldersOnBookmarkBar[] = |
| 530 L"user_experience_metrics.num_folders_on_bookmark_bar"; | 530 L"user_experience_metrics.num_folders_on_bookmark_bar"; |
| 531 const wchar_t kNumBookmarksInOtherBookmarkFolder[] = | 531 const wchar_t kNumBookmarksInOtherBookmarkFolder[] = |
| 532 L"user_experience_metrics.num_bookmarks_in_other_bookmark_folder"; | 532 L"user_experience_metrics.num_bookmarks_in_other_bookmark_folder"; |
| 533 const wchar_t kNumFoldersInOtherBookmarkFolder[] = | 533 const wchar_t kNumFoldersInOtherBookmarkFolder[] = |
| 534 L"user_experience_metrics.num_folders_in_other_bookmark_folder"; | 534 L"user_experience_metrics.num_folders_in_other_bookmark_folder"; |
| 535 | 535 |
| 536 // Number of keywords. | 536 // Number of keywords. |
| 537 const wchar_t kNumKeywords[] = L"user_experience_metrics.num_keywords"; | 537 const wchar_t kNumKeywords[] = L"user_experience_metrics.num_keywords"; |
| 538 | 538 |
| 539 // Whether Extensions or User Scripts are enabled. | 539 // Whether Extensions are enabled. |
| 540 const wchar_t kDisableExtensions[] = L"extensions.disabled"; | 540 const wchar_t kDisableExtensions[] = L"extensions.disabled"; |
| 541 const wchar_t kEnableUserScripts[] = L"extensions.user_scripts_enabled"; | |
| 542 | 541 |
| 543 // Boolean which specifies whether the Extension Shelf is visible on all tabs. | 542 // Boolean which specifies whether the Extension Shelf is visible on all tabs. |
| 544 const wchar_t kShowExtensionShelf[] = L"extensions.shelf.show_on_all_tabs"; | 543 const wchar_t kShowExtensionShelf[] = L"extensions.shelf.show_on_all_tabs"; |
| 545 | 544 |
| 546 // Time of the last, and next scheduled, extensions auto-update checks. | 545 // Time of the last, and next scheduled, extensions auto-update checks. |
| 547 const wchar_t kLastExtensionsUpdateCheck[] = | 546 const wchar_t kLastExtensionsUpdateCheck[] = |
| 548 L"extensions.autoupdate.last_check"; | 547 L"extensions.autoupdate.last_check"; |
| 549 const wchar_t kNextExtensionsUpdateCheck[] = | 548 const wchar_t kNextExtensionsUpdateCheck[] = |
| 550 L"extensions.autoupdate.next_check"; | 549 L"extensions.autoupdate.next_check"; |
| 551 // Version number of last blacklist check | 550 // Version number of last blacklist check |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; | 592 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; |
| 594 | 593 |
| 595 // Create web application shortcut dialog preferences. | 594 // Create web application shortcut dialog preferences. |
| 596 const wchar_t kWebAppCreateOnDesktop[] = L"browser.web_app.create_on_desktop"; | 595 const wchar_t kWebAppCreateOnDesktop[] = L"browser.web_app.create_on_desktop"; |
| 597 const wchar_t kWebAppCreateInAppsMenu[] = | 596 const wchar_t kWebAppCreateInAppsMenu[] = |
| 598 L"browser.web_app.create_in_apps_menu"; | 597 L"browser.web_app.create_in_apps_menu"; |
| 599 const wchar_t kWebAppCreateInQuickLaunchBar[] = | 598 const wchar_t kWebAppCreateInQuickLaunchBar[] = |
| 600 L"browser.web_app.create_in_quick_launch_bar"; | 599 L"browser.web_app.create_in_quick_launch_bar"; |
| 601 | 600 |
| 602 } // namespace prefs | 601 } // namespace prefs |
| OLD | NEW |