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

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 copyright in file headers 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
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 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; 568 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu";
569 569
570 // Spawns threads to watch for excessive delays in specified message loops. 570 // Spawns threads to watch for excessive delays in specified message loops.
571 // User should set breakpoints on Alarm() to examine problematic thread. 571 // User should set breakpoints on Alarm() to examine problematic thread.
572 // 572 //
573 // Usage: -enable-watchdog=[ui][io] 573 // Usage: -enable-watchdog=[ui][io]
574 // 574 //
575 // Order of the listed sub-arguments does not matter. 575 // Order of the listed sub-arguments does not matter.
576 const char kEnableWatchdog[] = "enable-watchdog"; 576 const char kEnableWatchdog[] = "enable-watchdog";
577 577
578 // Enable Website Settings. The Website Settings UI will replace the Page Info
579 // Bubble.
580 const char kEnableWebsiteSettings[] = "enable-website-settings";
581
578 // Uses WebSocket over SPDY. 582 // Uses WebSocket over SPDY.
579 const char kEnableWebSocketOverSpdy[] = "enable-websocket-over-spdy"; 583 const char kEnableWebSocketOverSpdy[] = "enable-websocket-over-spdy";
580 584
581 // Enables the web store link experiment. 585 // Enables the web store link experiment.
582 const char kEnableWebStoreLink[] = "enable-webstore-link"; 586 const char kEnableWebStoreLink[] = "enable-webstore-link";
583 587
584 // Enables experimental features for Spellchecker. Right now, the first 588 // Enables experimental features for Spellchecker. Right now, the first
585 // experimental feature is auto spell correct, which corrects words which are 589 // experimental feature is auto spell correct, which corrects words which are
586 // misppelled by typing the word with two consecutive letters swapped. The 590 // misppelled by typing the word with two consecutive letters swapped. The
587 // features that will be added next are: 591 // features that will be added next are:
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after
1306 1310
1307 // ----------------------------------------------------------------------------- 1311 // -----------------------------------------------------------------------------
1308 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1312 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1309 // 1313 //
1310 // You were going to just dump your switches here, weren't you? Instead, please 1314 // You were going to just dump your switches here, weren't you? Instead, please
1311 // put them in alphabetical order above, or in order inside the appropriate 1315 // put them in alphabetical order above, or in order inside the appropriate
1312 // ifdef at the bottom. The order should match the header. 1316 // ifdef at the bottom. The order should match the header.
1313 // ----------------------------------------------------------------------------- 1317 // -----------------------------------------------------------------------------
1314 1318
1315 } // namespace switches 1319 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698