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

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

Issue 1575033: Create a command-line switch for enabling touch events. (Closed)
Patch Set: Enabling touch support by default in test_shell Created 10 years, 7 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') | chrome/renderer/render_thread.cc » ('j') | 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 312
313 // Enable syncing browser preferences. 313 // Enable syncing browser preferences.
314 const char kEnableSyncPreferences[] = "enable-sync-preferences"; 314 const char kEnableSyncPreferences[] = "enable-sync-preferences";
315 315
316 // Enable syncing browser themes. 316 // Enable syncing browser themes.
317 const char kEnableSyncThemes[] = "enable-sync-themes"; 317 const char kEnableSyncThemes[] = "enable-sync-themes";
318 318
319 // Enable syncing browser typed urls. 319 // Enable syncing browser typed urls.
320 const char kEnableSyncTypedUrls[] = "enable-sync-typed-urls"; 320 const char kEnableSyncTypedUrls[] = "enable-sync-typed-urls";
321 321
322 // Whether or not the touch events API is exposed.
323 const char kEnableTouch[] = "enable-touch";
324
322 // Whether the multiple profiles feature based on the user-data-dir flag is 325 // Whether the multiple profiles feature based on the user-data-dir flag is
323 // enabled or not. 326 // enabled or not.
324 const char kEnableUserDataDirProfiles[] = "enable-udd-profiles"; 327 const char kEnableUserDataDirProfiles[] = "enable-udd-profiles";
325 328
326 // Enables the option to show tabs as a vertical stack down the side of the 329 // Enables the option to show tabs as a vertical stack down the side of the
327 // browser window. 330 // browser window.
328 const char kEnableVerticalTabs[] = "enable-vertical-tabs"; 331 const char kEnableVerticalTabs[] = "enable-vertical-tabs";
329 332
330 // Enables video layering where video is rendered as a separate layer outside 333 // Enables video layering where video is rendered as a separate layer outside
331 // of the backing store. 334 // of the backing store.
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after
922 925
923 // ----------------------------------------------------------------------------- 926 // -----------------------------------------------------------------------------
924 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 927 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
925 // 928 //
926 // You were going to just dump your switches here, weren't you? Instead, 929 // You were going to just dump your switches here, weren't you? Instead,
927 // please put them in alphabetical order above, or in order inside the 930 // please put them in alphabetical order above, or in order inside the
928 // appropriate ifdef at the bottom. The order should match the header. 931 // appropriate ifdef at the bottom. The order should match the header.
929 // ----------------------------------------------------------------------------- 932 // -----------------------------------------------------------------------------
930 933
931 } // namespace switches 934 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/renderer/render_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698