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

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

Issue 12007004: Add --enable-sync-dictionary flag (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 11 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
« 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 628 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 639
640 // Enables auto correction for misspelled words. 640 // Enables auto correction for misspelled words.
641 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; 641 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct";
642 642
643 // Enables the stacked tabstrip. 643 // Enables the stacked tabstrip.
644 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; 644 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip";
645 645
646 // Enables experimental suggestions pane in New Tab page. 646 // Enables experimental suggestions pane in New Tab page.
647 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; 647 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp";
648 648
649 // Enables syncing of dictionary.
650 const char kEnableSyncDictionary[] = "enable-sync-dictionary";
651
649 // Enables context menu for selecting groups of tabs. 652 // Enables context menu for selecting groups of tabs.
650 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; 653 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu";
651 654
652 // Spawns threads to watch for excessive delays in specified message loops. 655 // Spawns threads to watch for excessive delays in specified message loops.
653 // User should set breakpoints on Alarm() to examine problematic thread. 656 // User should set breakpoints on Alarm() to examine problematic thread.
654 // 657 //
655 // Usage: -enable-watchdog=[ui][io] 658 // Usage: -enable-watchdog=[ui][io]
656 // 659 //
657 // Order of the listed sub-arguments does not matter. 660 // Order of the listed sub-arguments does not matter.
658 const char kEnableWatchdog[] = "enable-watchdog"; 661 const char kEnableWatchdog[] = "enable-watchdog";
(...skipping 961 matching lines...) Expand 10 before | Expand all | Expand 10 after
1620 1623
1621 // ----------------------------------------------------------------------------- 1624 // -----------------------------------------------------------------------------
1622 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1625 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1623 // 1626 //
1624 // You were going to just dump your switches here, weren't you? Instead, please 1627 // You were going to just dump your switches here, weren't you? Instead, please
1625 // put them in alphabetical order above, or in order inside the appropriate 1628 // put them in alphabetical order above, or in order inside the appropriate
1626 // ifdef at the bottom. The order should match the header. 1629 // ifdef at the bottom. The order should match the header.
1627 // ----------------------------------------------------------------------------- 1630 // -----------------------------------------------------------------------------
1628 1631
1629 } // namespace switches 1632 } // 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