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

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

Issue 9383005: Add method skeleton for showing website settings. Add commandline flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix typo in comment. Created 8 years, 10 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/test/base/test_browser_window.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 560 matching lines...) Expand 10 before | Expand all | Expand 10 after
571 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; 571 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu";
572 572
573 // Spawns threads to watch for excessive delays in specified message loops. 573 // Spawns threads to watch for excessive delays in specified message loops.
574 // User should set breakpoints on Alarm() to examine problematic thread. 574 // User should set breakpoints on Alarm() to examine problematic thread.
575 // 575 //
576 // Usage: -enable-watchdog=[ui][io] 576 // Usage: -enable-watchdog=[ui][io]
577 // 577 //
578 // Order of the listed sub-arguments does not matter. 578 // Order of the listed sub-arguments does not matter.
579 const char kEnableWatchdog[] = "enable-watchdog"; 579 const char kEnableWatchdog[] = "enable-watchdog";
580 580
581 // Enable Website Settings. The Website Settings UI will replace the Page Info
582 // Bubble.
583 const char kEnableWebsiteSettings[] = "enable-website-settings";
584
581 // Uses WebSocket over SPDY. 585 // Uses WebSocket over SPDY.
582 const char kEnableWebSocketOverSpdy[] = "enable-websocket-over-spdy"; 586 const char kEnableWebSocketOverSpdy[] = "enable-websocket-over-spdy";
583 587
584 // Enables the web store link experiment. 588 // Enables the web store link experiment.
585 const char kEnableWebStoreLink[] = "enable-webstore-link"; 589 const char kEnableWebStoreLink[] = "enable-webstore-link";
586 590
587 // Enables experimental features for Spellchecker. Right now, the first 591 // Enables experimental features for Spellchecker. Right now, the first
588 // experimental feature is auto spell correct, which corrects words which are 592 // experimental feature is auto spell correct, which corrects words which are
589 // misppelled by typing the word with two consecutive letters swapped. The 593 // misppelled by typing the word with two consecutive letters swapped. The
590 // features that will be added next are: 594 // features that will be added next are:
(...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after
1322 1326
1323 // ----------------------------------------------------------------------------- 1327 // -----------------------------------------------------------------------------
1324 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1328 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1325 // 1329 //
1326 // You were going to just dump your switches here, weren't you? Instead, please 1330 // You were going to just dump your switches here, weren't you? Instead, please
1327 // put them in alphabetical order above, or in order inside the appropriate 1331 // put them in alphabetical order above, or in order inside the appropriate
1328 // ifdef at the bottom. The order should match the header. 1332 // ifdef at the bottom. The order should match the header.
1329 // ----------------------------------------------------------------------------- 1333 // -----------------------------------------------------------------------------
1330 1334
1331 } // namespace switches 1335 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/test/base/test_browser_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698