Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(106)

Side by Side Diff: chrome/common/pref_names.cc

Issue 189005: Revert 25204 - Revert 24846 Enable extensions by default.... (Closed) Base URL: svn://chrome-svn/chrome/branches/205/src/
Patch Set: Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 516 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 L"user_experience_metrics.num_folders_on_bookmark_bar"; 527 L"user_experience_metrics.num_folders_on_bookmark_bar";
528 const wchar_t kNumBookmarksInOtherBookmarkFolder[] = 528 const wchar_t kNumBookmarksInOtherBookmarkFolder[] =
529 L"user_experience_metrics.num_bookmarks_in_other_bookmark_folder"; 529 L"user_experience_metrics.num_bookmarks_in_other_bookmark_folder";
530 const wchar_t kNumFoldersInOtherBookmarkFolder[] = 530 const wchar_t kNumFoldersInOtherBookmarkFolder[] =
531 L"user_experience_metrics.num_folders_in_other_bookmark_folder"; 531 L"user_experience_metrics.num_folders_in_other_bookmark_folder";
532 532
533 // Number of keywords. 533 // Number of keywords.
534 const wchar_t kNumKeywords[] = L"user_experience_metrics.num_keywords"; 534 const wchar_t kNumKeywords[] = L"user_experience_metrics.num_keywords";
535 535
536 // Whether Extensions or User Scripts are enabled. 536 // Whether Extensions or User Scripts are enabled.
537 const wchar_t kEnableExtensions[] = L"extensions.enabled"; 537 const wchar_t kDisableExtensions[] = L"extensions.disabled";
538 const wchar_t kEnableUserScripts[] = L"extensions.user_scripts_enabled"; 538 const wchar_t kEnableUserScripts[] = L"extensions.user_scripts_enabled";
539 539
540 // Boolean which specifies whether the Extension Shelf is visible on all tabs. 540 // Boolean which specifies whether the Extension Shelf is visible on all tabs.
541 const wchar_t kShowExtensionShelf[] = L"extensions.shelf.show_on_all_tabs"; 541 const wchar_t kShowExtensionShelf[] = L"extensions.shelf.show_on_all_tabs";
542 542
543 // Time of the last, and next scheduled, extensions auto-update checks. 543 // Time of the last, and next scheduled, extensions auto-update checks.
544 const wchar_t kLastExtensionsUpdateCheck[] = 544 const wchar_t kLastExtensionsUpdateCheck[] =
545 L"extensions.autoupdate.last_check"; 545 L"extensions.autoupdate.last_check";
546 const wchar_t kNextExtensionsUpdateCheck[] = 546 const wchar_t kNextExtensionsUpdateCheck[] =
547 L"extensions.autoupdate.next_check"; 547 L"extensions.autoupdate.next_check";
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 // Integer location of the split bar in the browser view. 579 // Integer location of the split bar in the browser view.
580 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; 580 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location";
581 581
582 // 64-bit integer serialization of the base::Time when the last sync occured. 582 // 64-bit integer serialization of the base::Time when the last sync occured.
583 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; 583 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time";
584 584
585 // Boolean specifying whether the user finished setting up sync. 585 // Boolean specifying whether the user finished setting up sync.
586 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; 586 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed";
587 587
588 } // namespace prefs 588 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698