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

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

Issue 1221483002: New tabCapture.captureOffscreenTab API, initially for Presentation API 1UA mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
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 "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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 386
387 // Enable OS integration for Chrome app file associations. 387 // Enable OS integration for Chrome app file associations.
388 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; 388 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations";
389 389
390 // Enables the benchmarking extensions. 390 // Enables the benchmarking extensions.
391 const char kEnableBenchmarking[] = "enable-benchmarking"; 391 const char kEnableBenchmarking[] = "enable-benchmarking";
392 392
393 // Enables the multi-level undo system for bookmarks. 393 // Enables the multi-level undo system for bookmarks.
394 const char kEnableBookmarkUndo[] = "enable-bookmark-undo"; 394 const char kEnableBookmarkUndo[] = "enable-bookmark-undo";
395 395
396 // Enables the experimental chrome.tabCapture.capturePresentation API, to be
397 // used as a local rendering implementation for the new W3C Presentation API.
398 const char kEnableCapturePresentationApi[] = "enable-capture-presentation-api";
399
396 // Enables detection of child accounts. 400 // Enables detection of child accounts.
397 const char kEnableChildAccountDetection[] = 401 const char kEnableChildAccountDetection[] =
398 "enable-child-account-detection"; 402 "enable-child-account-detection";
399 403
400 // This applies only when the process type is "service". Enables the Cloud 404 // This applies only when the process type is "service". Enables the Cloud
401 // Print Proxy component within the service process. 405 // Print Proxy component within the service process.
402 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; 406 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy";
403 407
404 // If true devtools experimental settings are enabled. 408 // If true devtools experimental settings are enabled.
405 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; 409 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments";
(...skipping 976 matching lines...) Expand 10 before | Expand all | Expand 10 after
1382 1386
1383 // ----------------------------------------------------------------------------- 1387 // -----------------------------------------------------------------------------
1384 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1388 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1385 // 1389 //
1386 // You were going to just dump your switches here, weren't you? Instead, please 1390 // You were going to just dump your switches here, weren't you? Instead, please
1387 // put them in alphabetical order above, or in order inside the appropriate 1391 // put them in alphabetical order above, or in order inside the appropriate
1388 // ifdef at the bottom. The order should match the header. 1392 // ifdef at the bottom. The order should match the header.
1389 // ----------------------------------------------------------------------------- 1393 // -----------------------------------------------------------------------------
1390 1394
1391 } // namespace switches 1395 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698