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

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

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

Powered by Google App Engine
This is Rietveld 408576698