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

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

Issue 11475028: Add new instant extended specific pref. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed last OWNERS comments. Created 8 years 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) 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/basictypes.h" 7 #include "base/basictypes.h"
8 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 480
481 // Allows access to the listed host patterns, as exceptions to the blacklist. 481 // Allows access to the listed host patterns, as exceptions to the blacklist.
482 const char kUrlWhitelist[] = "policy.url_whitelist"; 482 const char kUrlWhitelist[] = "policy.url_whitelist";
483 483
484 // Boolean pref indicating whether the instant confirm dialog has been shown. 484 // Boolean pref indicating whether the instant confirm dialog has been shown.
485 const char kInstantConfirmDialogShown[] = "instant.confirm_dialog_shown"; 485 const char kInstantConfirmDialogShown[] = "instant.confirm_dialog_shown";
486 486
487 // Boolean pref indicating if instant is enabled. 487 // Boolean pref indicating if instant is enabled.
488 const char kInstantEnabled[] = "instant.enabled"; 488 const char kInstantEnabled[] = "instant.enabled";
489 489
490 // Boolean pref indicating if instant is enabled for instant extended.
491 const char kInstantExtendedEnabled[] = "instant_extended.enabled";
492
490 // Prefix URL for the experimental Instant ZeroSuggest provider. 493 // Prefix URL for the experimental Instant ZeroSuggest provider.
491 const char kInstantUIZeroSuggestUrlPrefix[] = 494 const char kInstantUIZeroSuggestUrlPrefix[] =
492 "instant_ui.zero_suggest_url_prefix"; 495 "instant_ui.zero_suggest_url_prefix";
493 496
494 // Used to migrate preferences from local state to user preferences to 497 // Used to migrate preferences from local state to user preferences to
495 // enable multiple profiles. 498 // enable multiple profiles.
496 // BITMASK with possible values (see browser_prefs.cc for enum): 499 // BITMASK with possible values (see browser_prefs.cc for enum):
497 // 0: No preferences migrated. 500 // 0: No preferences migrated.
498 // 1: DNS preferences migrated: kDnsPrefetchingStartupList and HostReferralList 501 // 1: DNS preferences migrated: kDnsPrefetchingStartupList and HostReferralList
499 // 2: Browser window preferences migrated: kDevToolsSplitLocation and 502 // 2: Browser window preferences migrated: kDevToolsSplitLocation and
(...skipping 1664 matching lines...) Expand 10 before | Expand all | Expand 10 after
2164 2167
2165 #if defined(OS_CHROMEOS) 2168 #if defined(OS_CHROMEOS)
2166 // Indicates whether the RLZ tracking has been enabled by user. 2169 // Indicates whether the RLZ tracking has been enabled by user.
2167 const char kRLZEnabled[] = "rlz.enabled"; 2170 const char kRLZEnabled[] = "rlz.enabled";
2168 2171
2169 // The RLZ brand code, if enabled. 2172 // The RLZ brand code, if enabled.
2170 const char kRLZBrand[] = "rlz.brand"; 2173 const char kRLZBrand[] = "rlz.brand";
2171 #endif 2174 #endif
2172 2175
2173 } // namespace prefs 2176 } // 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