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

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

Issue 7034052: Linux/CrOS smooth scrolling support - behind a flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 6 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 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 // Enable panels (always on-top docked pop-up windows). 481 // Enable panels (always on-top docked pop-up windows).
482 const char kEnablePanels[] = "enable-panels"; 482 const char kEnablePanels[] = "enable-panels";
483 483
484 // Enable speculative TCP/IP preconnection. 484 // Enable speculative TCP/IP preconnection.
485 const char kEnablePreconnect[] = "enable-preconnect"; 485 const char kEnablePreconnect[] = "enable-preconnect";
486 486
487 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra 487 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra
488 // parameter to indicate if the provider should be the default. 488 // parameter to indicate if the provider should be the default.
489 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2"; 489 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2";
490 490
491 // On platforms that support it, enable smooth scroll animation.
492 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling";
darin (slow to review) 2011/05/31 20:40:24 nit: indentation of "=" is off by one
Scott Byer 2011/05/31 21:02:45 Done.
493
491 // Enables 0-RTT HTTPS handshakes. 494 // Enables 0-RTT HTTPS handshakes.
492 const char kEnableSnapStart[] = "enable-snap-start"; 495 const char kEnableSnapStart[] = "enable-snap-start";
493 496
494 // Enable syncing browser data to a Google Account. 497 // Enable syncing browser data to a Google Account.
495 const char kEnableSync[] = "enable-sync"; 498 const char kEnableSync[] = "enable-sync";
496 499
497 // Enable syncing browser autofill. 500 // Enable syncing browser autofill.
498 const char kEnableSyncAutofill[] = "enable-sync-autofill"; 501 const char kEnableSyncAutofill[] = "enable-sync-autofill";
499 502
500 // Enable sync encryption options. 503 // Enable sync encryption options.
(...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after
1178 1181
1179 // ----------------------------------------------------------------------------- 1182 // -----------------------------------------------------------------------------
1180 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1183 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1181 // 1184 //
1182 // You were going to just dump your switches here, weren't you? Instead, 1185 // You were going to just dump your switches here, weren't you? Instead,
1183 // please put them in alphabetical order above, or in order inside the 1186 // please put them in alphabetical order above, or in order inside the
1184 // appropriate ifdef at the bottom. The order should match the header. 1187 // appropriate ifdef at the bottom. The order should match the header.
1185 // ----------------------------------------------------------------------------- 1188 // -----------------------------------------------------------------------------
1186 1189
1187 } // namespace switches 1190 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698