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

Side by Side Diff: chrome/browser/chromeos/login/chrome_restart_request.cc

Issue 1949023005: gpu: Add flag for enabling asynchronous worker context. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase fix 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/browser/chromeos/login/chrome_restart_request.h" 5 #include "chrome/browser/chromeos/login/chrome_restart_request.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "ash/ash_switches.h" 9 #include "ash/ash_switches.h"
10 #include "base/base_switches.h" 10 #include "base/base_switches.h"
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 ::switches::kBlinkSettings, 75 ::switches::kBlinkSettings,
76 ::switches::kDisable2dCanvasImageChromium, 76 ::switches::kDisable2dCanvasImageChromium,
77 ::switches::kDisableAccelerated2dCanvas, 77 ::switches::kDisableAccelerated2dCanvas,
78 ::switches::kDisableAcceleratedJpegDecoding, 78 ::switches::kDisableAcceleratedJpegDecoding,
79 ::switches::kDisableAcceleratedMjpegDecode, 79 ::switches::kDisableAcceleratedMjpegDecode,
80 ::switches::kDisableAcceleratedVideoDecode, 80 ::switches::kDisableAcceleratedVideoDecode,
81 ::switches::kDisableBlinkFeatures, 81 ::switches::kDisableBlinkFeatures,
82 ::switches::kDisableCastStreamingHWEncoding, 82 ::switches::kDisableCastStreamingHWEncoding,
83 ::switches::kDisableDistanceFieldText, 83 ::switches::kDisableDistanceFieldText,
84 ::switches::kDisableGpu, 84 ::switches::kDisableGpu,
85 ::switches::kDisableGpuAsyncWorkerContext,
85 ::switches::kDisableGpuMemoryBufferVideoFrames, 86 ::switches::kDisableGpuMemoryBufferVideoFrames,
86 ::switches::kDisableGpuShaderDiskCache, 87 ::switches::kDisableGpuShaderDiskCache,
87 ::switches::kDisableGpuWatchdog, 88 ::switches::kDisableGpuWatchdog,
88 ::switches::kDisableGpuCompositing, 89 ::switches::kDisableGpuCompositing,
89 ::switches::kDisableGpuRasterization, 90 ::switches::kDisableGpuRasterization,
90 ::switches::kDisableLowResTiling, 91 ::switches::kDisableLowResTiling,
91 ::switches::kDisablePreferCompositingToLCDText, 92 ::switches::kDisablePreferCompositingToLCDText,
92 ::switches::kDisablePanelFitting, 93 ::switches::kDisablePanelFitting,
93 ::switches::kDisableRGBA4444Textures, 94 ::switches::kDisableRGBA4444Textures,
94 ::switches::kDisableSeccompFilterSandbox, 95 ::switches::kDisableSeccompFilterSandbox,
95 ::switches::kDisableSetuidSandbox, 96 ::switches::kDisableSetuidSandbox,
96 ::switches::kDisableThreadedScrolling, 97 ::switches::kDisableThreadedScrolling,
97 ::switches::kDisableTouchDragDrop, 98 ::switches::kDisableTouchDragDrop,
98 ::switches::kDisableZeroCopy, 99 ::switches::kDisableZeroCopy,
99 ::switches::kEnableBlinkFeatures, 100 ::switches::kEnableBlinkFeatures,
100 ::switches::kDisableDisplayList2dCanvas, 101 ::switches::kDisableDisplayList2dCanvas,
101 ::switches::kEnableDisplayList2dCanvas, 102 ::switches::kEnableDisplayList2dCanvas,
102 ::switches::kForceDisplayList2dCanvas, 103 ::switches::kForceDisplayList2dCanvas,
103 ::switches::kDisableGpuSandbox, 104 ::switches::kDisableGpuSandbox,
104 ::switches::kEnableDistanceFieldText, 105 ::switches::kEnableDistanceFieldText,
106 ::switches::kEnableGpuAsyncWorkerContext,
105 ::switches::kEnableGpuMemoryBufferVideoFrames, 107 ::switches::kEnableGpuMemoryBufferVideoFrames,
106 ::switches::kEnableGpuRasterization, 108 ::switches::kEnableGpuRasterization,
107 ::switches::kEnableImageColorProfiles, 109 ::switches::kEnableImageColorProfiles,
108 ::switches::kEnableLogging, 110 ::switches::kEnableLogging,
109 ::switches::kEnableLowResTiling, 111 ::switches::kEnableLowResTiling,
110 ::switches::kDisablePartialRaster, 112 ::switches::kDisablePartialRaster,
111 ::switches::kEnablePartialRaster, 113 ::switches::kEnablePartialRaster,
112 ::switches::kEnablePinch, 114 ::switches::kEnablePinch,
113 ::switches::kEnablePreferCompositingToLCDText, 115 ::switches::kEnablePreferCompositingToLCDText,
114 ::switches::kEnableRGBA4444Textures, 116 ::switches::kEnableRGBA4444Textures,
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 // Relaunch chrome without session manager on dev box. 357 // Relaunch chrome without session manager on dev box.
356 ReLaunch(command_line); 358 ReLaunch(command_line);
357 return; 359 return;
358 } 360 }
359 361
360 // ChromeRestartRequest deletes itself after request sent to session manager. 362 // ChromeRestartRequest deletes itself after request sent to session manager.
361 (new ChromeRestartRequest(command_line.argv()))->Start(); 363 (new ChromeRestartRequest(command_line.argv()))->Start();
362 } 364 }
363 365
364 } // namespace chromeos 366 } // namespace chromeos
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_settings.cc ('k') | content/browser/compositor/gpu_process_transport_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698