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

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

Issue 197313007: Add Easy Unlock options to chrome://settings behind a flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 9 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/chrome_switches.h ('k') | chrome/common/pref_names.h » ('j') | 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/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 521
522 // Enables the DOM distiller. 522 // Enables the DOM distiller.
523 const char kEnableDomDistiller[] = "enable-dom-distiller"; 523 const char kEnableDomDistiller[] = "enable-dom-distiller";
524 524
525 // Enables Domain Reliability Monitoring. 525 // Enables Domain Reliability Monitoring.
526 const char kEnableDomainReliability[] = "enable-domain-reliability"; 526 const char kEnableDomainReliability[] = "enable-domain-reliability";
527 527
528 // Enable Enhanced Bookmarks. 528 // Enable Enhanced Bookmarks.
529 const char kEnhancedBookmarksExperiment[] = "enhanced-bookmarks-experiment"; 529 const char kEnhancedBookmarksExperiment[] = "enhanced-bookmarks-experiment";
530 530
531 // Enables Easy Unlock to be set up and used.
532 extern const char kEnableEasyUnlock[] = "enable-easy-unlock";
533
531 // Enables experimentation with ephemeral apps, which are launched without 534 // Enables experimentation with ephemeral apps, which are launched without
532 // installing in Chrome. 535 // installing in Chrome.
533 const char kEnableEphemeralApps[] = "enable-ephemeral-apps"; 536 const char kEnableEphemeralApps[] = "enable-ephemeral-apps";
534 537
535 // Enables logging for extension activity. 538 // Enables logging for extension activity.
536 const char kEnableExtensionActivityLogging[] = 539 const char kEnableExtensionActivityLogging[] =
537 "enable-extension-activity-logging"; 540 "enable-extension-activity-logging";
538 541
539 const char kEnableExtensionActivityLogTesting[] = 542 const char kEnableExtensionActivityLogTesting[] =
540 "enable-extension-activity-log-testing"; 543 "enable-extension-activity-log-testing";
(...skipping 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after
1544 1547
1545 // ----------------------------------------------------------------------------- 1548 // -----------------------------------------------------------------------------
1546 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1549 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1547 // 1550 //
1548 // You were going to just dump your switches here, weren't you? Instead, please 1551 // You were going to just dump your switches here, weren't you? Instead, please
1549 // put them in alphabetical order above, or in order inside the appropriate 1552 // put them in alphabetical order above, or in order inside the appropriate
1550 // ifdef at the bottom. The order should match the header. 1553 // ifdef at the bottom. The order should match the header.
1551 // ----------------------------------------------------------------------------- 1554 // -----------------------------------------------------------------------------
1552 1555
1553 } // namespace switches 1556 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/pref_names.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698