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

Side by Side Diff: content/public/common/content_switches.cc

Issue 2144623003: [sensors] Introduce Generic Sensor API interfaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Definition for PlatformSensorProvider ctor/dtor Created 4 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
« no previous file with comments | « content/public/common/content_switches.h ('k') | device/generic_sensor/BUILD.gn » ('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) 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 "build/build_config.h" 5 #include "build/build_config.h"
6 #include "content/public/common/content_switches.h" 6 #include "content/public/common/content_switches.h"
7 7
8 namespace switches { 8 namespace switches {
9 9
10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 const char kEnableWebBluetooth[] = "enable-web-bluetooth"; 387 const char kEnableWebBluetooth[] = "enable-web-bluetooth";
388 388
389 // WebFonts intervention v2 flag and values. 389 // WebFonts intervention v2 flag and values.
390 const char kEnableWebFontsInterventionV2[] = "enable-webfonts-intervention-v2"; 390 const char kEnableWebFontsInterventionV2[] = "enable-webfonts-intervention-v2";
391 const char kEnableWebFontsInterventionV2SwitchValueEnabledWith2G[] = 391 const char kEnableWebFontsInterventionV2SwitchValueEnabledWith2G[] =
392 "enabled-2g"; 392 "enabled-2g";
393 const char kEnableWebFontsInterventionV2SwitchValueEnabledWithSlow2G[] = 393 const char kEnableWebFontsInterventionV2SwitchValueEnabledWithSlow2G[] =
394 "enabled-slow2g"; 394 "enabled-slow2g";
395 const char kEnableWebFontsInterventionV2SwitchValueDisabled[] = "disabled"; 395 const char kEnableWebFontsInterventionV2SwitchValueDisabled[] = "disabled";
396 396
397 // Enables Generic Sensor API functionality.
398 const char kEnableGenericSensors[] = "enable-generic-sensors";
399
397 // Makes the GL worker context run asynchronously by using a separate stream. 400 // Makes the GL worker context run asynchronously by using a separate stream.
398 const char kEnableGpuAsyncWorkerContext[] = "enable-gpu-async-worker-context"; 401 const char kEnableGpuAsyncWorkerContext[] = "enable-gpu-async-worker-context";
399 402
400 // Specify that all compositor resources should be backed by GPU memory buffers. 403 // Specify that all compositor resources should be backed by GPU memory buffers.
401 const char kEnableGpuMemoryBufferCompositorResources[] = 404 const char kEnableGpuMemoryBufferCompositorResources[] =
402 "enable-gpu-memory-buffer-compositor-resources"; 405 "enable-gpu-memory-buffer-compositor-resources";
403 406
404 // Enable GpuMemoryBuffer backed VideoFrames. 407 // Enable GpuMemoryBuffer backed VideoFrames.
405 const char kEnableGpuMemoryBufferVideoFrames[] = 408 const char kEnableGpuMemoryBufferVideoFrames[] =
406 "enable-gpu-memory-buffer-video-frames"; 409 "enable-gpu-memory-buffer-video-frames";
(...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after
1079 // the given directory. Used primarily to gather samples for IPC fuzzing. 1082 // the given directory. Used primarily to gather samples for IPC fuzzing.
1080 const char kIpcDumpDirectory[] = "ipc-dump-directory"; 1083 const char kIpcDumpDirectory[] = "ipc-dump-directory";
1081 1084
1082 // Specifies the testcase used by the IPC fuzzer. 1085 // Specifies the testcase used by the IPC fuzzer.
1083 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; 1086 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase";
1084 #endif 1087 #endif
1085 1088
1086 // Don't dump stuff here, follow the same order as the header. 1089 // Don't dump stuff here, follow the same order as the header.
1087 1090
1088 } // namespace switches 1091 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | device/generic_sensor/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698