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

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

Issue 1095005: Fixed bugs in GPU process startup on POSIX platforms. Added... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 9 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 | Annotate | Revision Log
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 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 // current details. 362 // current details.
363 const char kForceFieldTestNameAndValue[] = "force-fieldtest"; 363 const char kForceFieldTestNameAndValue[] = "force-fieldtest";
364 364
365 // Extra command line options for launching the GPU process (normally used 365 // Extra command line options for launching the GPU process (normally used
366 // for debugging). Use like renderer-cmd-prefix. 366 // for debugging). Use like renderer-cmd-prefix.
367 const char kGpuLauncher[] = "gpu-launcher"; 367 const char kGpuLauncher[] = "gpu-launcher";
368 368
369 // Makes this process a GPU sub-process. 369 // Makes this process a GPU sub-process.
370 const char kGpuProcess[] = "gpu-process"; 370 const char kGpuProcess[] = "gpu-process";
371 371
372 // Causes the GPU process to display a dialog on launch.
373 const char kGpuStartupDialog[] = "gpu-startup-dialog";
374
372 // Make Windows happy by allowing it to show "Enable access to this program" 375 // Make Windows happy by allowing it to show "Enable access to this program"
373 // checkbox in Add/Remove Programs->Set Program Access and Defaults. This 376 // checkbox in Add/Remove Programs->Set Program Access and Defaults. This
374 // only shows an error box because the only way to hide Chrome is by 377 // only shows an error box because the only way to hide Chrome is by
375 // uninstalling it. 378 // uninstalling it.
376 const char kHideIcons[] = "hide-icons"; 379 const char kHideIcons[] = "hide-icons";
377 380
378 // The value of this switch specifies which page will be displayed 381 // The value of this switch specifies which page will be displayed
379 // in newly-opened tabs. We need this for testing purposes so 382 // in newly-opened tabs. We need this for testing purposes so
380 // that the UI tests don't depend on what comes up for http://google.com. 383 // that the UI tests don't depend on what comes up for http://google.com.
381 const char kHomePage[] = "homepage"; 384 const char kHomePage[] = "homepage";
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
847 850
848 // ----------------------------------------------------------------------------- 851 // -----------------------------------------------------------------------------
849 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 852 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
850 // 853 //
851 // You were going to just dump your switches here, weren't you? Instead, 854 // You were going to just dump your switches here, weren't you? Instead,
852 // please put them in alphabetical order above, or in order inside the 855 // please put them in alphabetical order above, or in order inside the
853 // appropriate ifdef at the bottom. The order should match the header. 856 // appropriate ifdef at the bottom. The order should match the header.
854 // ----------------------------------------------------------------------------- 857 // -----------------------------------------------------------------------------
855 858
856 } // namespace switches 859 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698