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

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

Issue 8729009: Implement an AutoLaunch experiment for Chrome for certain brand codes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 1482 matching lines...) Expand 10 before | Expand all | Expand 10 after
1493 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height"; 1493 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height";
1494 const char kCloudPrintSigninDialogWidth[] = 1494 const char kCloudPrintSigninDialogWidth[] =
1495 "cloud_print.signin_dialog_size.width"; 1495 "cloud_print.signin_dialog_size.width";
1496 const char kCloudPrintSigninDialogHeight[] = 1496 const char kCloudPrintSigninDialogHeight[] =
1497 "cloud_print.signin_dialog_size.height"; 1497 "cloud_print.signin_dialog_size.height";
1498 1498
1499 // The list of BackgroundContents that should be loaded when the browser 1499 // The list of BackgroundContents that should be loaded when the browser
1500 // launches. 1500 // launches.
1501 const char kRegisteredBackgroundContents[] = "background_contents.registered"; 1501 const char kRegisteredBackgroundContents[] = "background_contents.registered";
1502 1502
1503 // An int that stores how often we've shown the "Chrome is configured to
1504 // auto-launch" infobar.
1505 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar";
1506
1503 // String that lists supported HTTP authentication schemes. 1507 // String that lists supported HTTP authentication schemes.
1504 const char kAuthSchemes[] = "auth.schemes"; 1508 const char kAuthSchemes[] = "auth.schemes";
1505 1509
1506 // Boolean that specifies whether to disable CNAME lookups when generating 1510 // Boolean that specifies whether to disable CNAME lookups when generating
1507 // Kerberos SPN. 1511 // Kerberos SPN.
1508 const char kDisableAuthNegotiateCnameLookup[] = 1512 const char kDisableAuthNegotiateCnameLookup[] =
1509 "auth.disable_negotiate_cname_lookup"; 1513 "auth.disable_negotiate_cname_lookup";
1510 // Boolean that specifies whether to include the port in a generated Kerberos 1514 // Boolean that specifies whether to include the port in a generated Kerberos
1511 // SPN. 1515 // SPN.
1512 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; 1516 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port";
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
1663 1667
1664 // String that represents the recovery component last downloaded version. This 1668 // String that represents the recovery component last downloaded version. This
1665 // takes the usual 'a.b.c.d' notation. 1669 // takes the usual 'a.b.c.d' notation.
1666 const char kRecoveryComponentVersion[] = "recovery_component.version"; 1670 const char kRecoveryComponentVersion[] = "recovery_component.version";
1667 1671
1668 // String that stores the component updater last known state. This is used for 1672 // String that stores the component updater last known state. This is used for
1669 // troubleshooting. 1673 // troubleshooting.
1670 const char kComponentUpdaterState[] = "component_updater.state"; 1674 const char kComponentUpdaterState[] = "component_updater.state";
1671 1675
1672 } // namespace prefs 1676 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698