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

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

Issue 7747043: WORK IN PROGRESS. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Small change Created 9 years, 3 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 496
497 // Enables TLS cached info extension. 497 // Enables TLS cached info extension.
498 const char kEnableSSLCachedInfo[] = "enable-ssl-cached-info"; 498 const char kEnableSSLCachedInfo[] = "enable-ssl-cached-info";
499 499
500 // Enable syncing browser data to a Google Account. 500 // Enable syncing browser data to a Google Account.
501 const char kEnableSync[] = "enable-sync"; 501 const char kEnableSync[] = "enable-sync";
502 502
503 // Enable syncing browser autofill. 503 // Enable syncing browser autofill.
504 const char kEnableSyncAutofill[] = "enable-sync-autofill"; 504 const char kEnableSyncAutofill[] = "enable-sync-autofill";
505 505
506 // Enable syncing extension settings.
507 const char kEnableSyncExtensionSettings[] = "enable-sync-extension-settings";
508
506 // Enable OAuth sign-in for sync. 509 // Enable OAuth sign-in for sync.
507 const char kEnableSyncOAuth[] = "enable-sync-oauth"; 510 const char kEnableSyncOAuth[] = "enable-sync-oauth";
508 511
509 // Enable syncing browser sessions. 512 // Enable syncing browser sessions.
510 const char kEnableSyncSessions[] = "enable-sync-sessions"; 513 const char kEnableSyncSessions[] = "enable-sync-sessions";
511 514
512 // Enables context menu for selecting groups of tabs. 515 // Enables context menu for selecting groups of tabs.
513 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; 516 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu";
514 517
515 // Enable syncing browser typed urls. 518 // Enable syncing browser typed urls.
(...skipping 719 matching lines...) Expand 10 before | Expand all | Expand 10 after
1235 1238
1236 // ----------------------------------------------------------------------------- 1239 // -----------------------------------------------------------------------------
1237 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1240 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1238 // 1241 //
1239 // You were going to just dump your switches here, weren't you? Instead, 1242 // You were going to just dump your switches here, weren't you? Instead,
1240 // please put them in alphabetical order above, or in order inside the 1243 // please put them in alphabetical order above, or in order inside the
1241 // appropriate ifdef at the bottom. The order should match the header. 1244 // appropriate ifdef at the bottom. The order should match the header.
1242 // ----------------------------------------------------------------------------- 1245 // -----------------------------------------------------------------------------
1243 1246
1244 } // namespace switches 1247 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698