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

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

Issue 178863002: Implement settings in a widnow (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') | 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/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 665 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 "enable-search-button-in-omnibox-always"; 676 "enable-search-button-in-omnibox-always";
677 const char kEnableSearchButtonInOmniboxForStr[] = 677 const char kEnableSearchButtonInOmniboxForStr[] =
678 "enable-search-button-in-omnibox-for-str"; 678 "enable-search-button-in-omnibox-for-str";
679 const char kEnableSearchButtonInOmniboxForStrOrIip[] = 679 const char kEnableSearchButtonInOmniboxForStrOrIip[] =
680 "enable-search-button-in-omnibox-for-str-or-iip"; 680 "enable-search-button-in-omnibox-for-str-or-iip";
681 681
682 // Certificate Transparency: Enable showing the SCT viewer when an SSL 682 // Certificate Transparency: Enable showing the SCT viewer when an SSL
683 // certificate is accompanied by, or contains, SCTs. 683 // certificate is accompanied by, or contains, SCTs.
684 const char kEnableSignedCertificateTimestampsViewer[] = "enable-sct-viewer"; 684 const char kEnableSignedCertificateTimestampsViewer[] = "enable-sct-viewer";
685 685
686 // Enable settings in a separate browser window per profile.
687 const char kEnableSettingsWindow[] = "enable-settings-window";
688
686 // Enable SPDY/4 alpha 2. This is a temporary testing flag. 689 // Enable SPDY/4 alpha 2. This is a temporary testing flag.
687 const char kEnableSpdy4a2[] = "enable-spdy4a2"; 690 const char kEnableSpdy4a2[] = "enable-spdy4a2";
688 691
689 // Enables auto correction for misspelled words. 692 // Enables auto correction for misspelled words.
690 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; 693 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct";
691 694
692 // Enables participation in the field trial for user feedback to spelling 695 // Enables participation in the field trial for user feedback to spelling
693 // service. 696 // service.
694 const char kEnableSpellingFeedbackFieldTrial[] = 697 const char kEnableSpellingFeedbackFieldTrial[] =
695 "enable-spelling-feedback-field-trial"; 698 "enable-spelling-feedback-field-trial";
(...skipping 846 matching lines...) Expand 10 before | Expand all | Expand 10 after
1542 1545
1543 // ----------------------------------------------------------------------------- 1546 // -----------------------------------------------------------------------------
1544 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1547 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1545 // 1548 //
1546 // You were going to just dump your switches here, weren't you? Instead, please 1549 // You were going to just dump your switches here, weren't you? Instead, please
1547 // put them in alphabetical order above, or in order inside the appropriate 1550 // put them in alphabetical order above, or in order inside the appropriate
1548 // ifdef at the bottom. The order should match the header. 1551 // ifdef at the bottom. The order should match the header.
1549 // ----------------------------------------------------------------------------- 1552 // -----------------------------------------------------------------------------
1550 1553
1551 } // namespace switches 1554 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698