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

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

Issue 1932903002: Add a flag for experimental native cups support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added metrics for the flag. Created 4 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') | tools/metrics/actions/actions.xml » ('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 "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 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
424 // Enables the Material Design feedback form. 424 // Enables the Material Design feedback form.
425 const char kEnableMaterialDesignFeedback[] = "enable-md-feedback"; 425 const char kEnableMaterialDesignFeedback[] = "enable-md-feedback";
426 426
427 // Enables the Material Design policy page at chrome://md-policy. 427 // Enables the Material Design policy page at chrome://md-policy.
428 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; 428 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page";
429 429
430 // Runs the Native Client inside the renderer process and enables GPU plugin 430 // Runs the Native Client inside the renderer process and enables GPU plugin
431 // (internally adds lEnableGpuPlugin to the command line). 431 // (internally adds lEnableGpuPlugin to the command line).
432 const char kEnableNaCl[] = "enable-nacl"; 432 const char kEnableNaCl[] = "enable-nacl";
433 433
434 #if defined(OS_CHROMEOS)
435 // Enables native cups integration
436 const char kEnableNativeCups[] = "enable-native-cups";
437 #endif // defined(OS_CHROMEOS)
438
434 // Enables the use of native notifications instead of using the Chrome based 439 // Enables the use of native notifications instead of using the Chrome based
435 // ones. 440 // ones.
436 const char kEnableNativeNotifications[] = "enable-native-notifications"; 441 const char kEnableNativeNotifications[] = "enable-native-notifications";
437 442
438 // Enables tracing for each navigation. It will attempt to trace each navigation 443 // Enables tracing for each navigation. It will attempt to trace each navigation
439 // for 10s, until the buffer is full, or until the next navigation. 444 // for 10s, until the buffer is full, or until the next navigation.
440 // It only works if a URL was provided by --trace-upload-url. 445 // It only works if a URL was provided by --trace-upload-url.
441 const char kEnableNavigationTracing[] = "enable-navigation-tracing"; 446 const char kEnableNavigationTracing[] = "enable-navigation-tracing";
442 447
443 // Enables the network-related benchmarking extensions. 448 // Enables the network-related benchmarking extensions.
(...skipping 900 matching lines...) Expand 10 before | Expand all | Expand 10 after
1344 1349
1345 // ----------------------------------------------------------------------------- 1350 // -----------------------------------------------------------------------------
1346 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1351 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1347 // 1352 //
1348 // You were going to just dump your switches here, weren't you? Instead, please 1353 // You were going to just dump your switches here, weren't you? Instead, please
1349 // put them in alphabetical order above, or in order inside the appropriate 1354 // put them in alphabetical order above, or in order inside the appropriate
1350 // ifdef at the bottom. The order should match the header. 1355 // ifdef at the bottom. The order should match the header.
1351 // ----------------------------------------------------------------------------- 1356 // -----------------------------------------------------------------------------
1352 1357
1353 } // namespace switches 1358 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | tools/metrics/actions/actions.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698