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

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

Issue 3042009: Add --enable-device-orientation switch and set ENABLE_DEVICE_ORIENTATION=1 (Closed)
Patch Set: Created 10 years, 5 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) 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 // Chromoting Host Process within the service process. 286 // Chromoting Host Process within the service process.
287 const char kEnableChromoting[] = "enable-chromoting"; 287 const char kEnableChromoting[] = "enable-chromoting";
288 288
289 // This applies only when the process type is "service". Enables the 289 // This applies only when the process type is "service". Enables the
290 // Cloud Print Proxy component within the service process. 290 // Cloud Print Proxy component within the service process.
291 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; 291 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy";
292 292
293 // Enables the Cloud Print dialog hosting code. 293 // Enables the Cloud Print dialog hosting code.
294 const char kEnableCloudPrint[] = "enable-cloud-print"; 294 const char kEnableCloudPrint[] = "enable-cloud-print";
295 295
296 // Enables device orientation events.
297 const char kEnableDeviceOrientation[] = "enable-device-orientation";
298
296 // Enables extension APIs that are in development. 299 // Enables extension APIs that are in development.
297 const char kEnableExperimentalExtensionApis[] = 300 const char kEnableExperimentalExtensionApis[] =
298 "enable-experimental-extension-apis"; 301 "enable-experimental-extension-apis";
299 302
300 // Enable experimental WebGL support. 303 // Enable experimental WebGL support.
301 const char kEnableExperimentalWebGL[] = "enable-webgl"; 304 const char kEnableExperimentalWebGL[] = "enable-webgl";
302 305
303 // Enable experimental timeline API. 306 // Enable experimental timeline API.
304 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; 307 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api";
305 308
(...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after
1117 1120
1118 // ----------------------------------------------------------------------------- 1121 // -----------------------------------------------------------------------------
1119 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1122 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1120 // 1123 //
1121 // You were going to just dump your switches here, weren't you? Instead, 1124 // You were going to just dump your switches here, weren't you? Instead,
1122 // please put them in alphabetical order above, or in order inside the 1125 // please put them in alphabetical order above, or in order inside the
1123 // appropriate ifdef at the bottom. The order should match the header. 1126 // appropriate ifdef at the bottom. The order should match the header.
1124 // ----------------------------------------------------------------------------- 1127 // -----------------------------------------------------------------------------
1125 1128
1126 } // namespace switches 1129 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698