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

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

Issue 1063493002: cc: Remove all traces of synchronous GPU rasterization (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 8 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/browser/about_flags.cc ('k') | content/browser/gpu/compositor_util.h » ('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 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/command_line.h" 10 #include "base/command_line.h"
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 ::switches::kDisableLowResTiling, 85 ::switches::kDisableLowResTiling,
86 ::switches::kDisableMediaSource, 86 ::switches::kDisableMediaSource,
87 ::switches::kDisableOneCopy, 87 ::switches::kDisableOneCopy,
88 ::switches::kDisablePreferCompositingToLCDText, 88 ::switches::kDisablePreferCompositingToLCDText,
89 ::switches::kDisablePrefixedEncryptedMedia, 89 ::switches::kDisablePrefixedEncryptedMedia,
90 ::switches::kDisablePanelFitting, 90 ::switches::kDisablePanelFitting,
91 ::switches::kDisableSeccompFilterSandbox, 91 ::switches::kDisableSeccompFilterSandbox,
92 ::switches::kDisableSetuidSandbox, 92 ::switches::kDisableSetuidSandbox,
93 ::switches::kDisableSurfaces, 93 ::switches::kDisableSurfaces,
94 ::switches::kDisableTextBlobs, 94 ::switches::kDisableTextBlobs,
95 ::switches::kDisableThreadedGpuRasterization,
96 ::switches::kDisableThreadedScrolling, 95 ::switches::kDisableThreadedScrolling,
97 ::switches::kDisableTouchDragDrop, 96 ::switches::kDisableTouchDragDrop,
98 ::switches::kDisableTouchEditing, 97 ::switches::kDisableTouchEditing,
99 ::switches::kEnableBeginFrameScheduling, 98 ::switches::kEnableBeginFrameScheduling,
100 ::switches::kEnableBlinkFeatures, 99 ::switches::kEnableBlinkFeatures,
101 ::switches::kEnableCompositorAnimationTimelines, 100 ::switches::kEnableCompositorAnimationTimelines,
102 ::switches::kEnableDelegatedRenderer, 101 ::switches::kEnableDelegatedRenderer,
103 ::switches::kDisableDisplayList2dCanvas, 102 ::switches::kDisableDisplayList2dCanvas,
104 ::switches::kEnableDisplayList2dCanvas, 103 ::switches::kEnableDisplayList2dCanvas,
105 ::switches::kForceDisplayList2dCanvas, 104 ::switches::kForceDisplayList2dCanvas,
106 ::switches::kDisableEncryptedMedia, 105 ::switches::kDisableEncryptedMedia,
107 ::switches::kDisableGpuSandbox, 106 ::switches::kDisableGpuSandbox,
108 ::switches::kEnableDistanceFieldText, 107 ::switches::kEnableDistanceFieldText,
109 ::switches::kEnableGpuRasterization, 108 ::switches::kEnableGpuRasterization,
110 ::switches::kEnableImageColorProfiles, 109 ::switches::kEnableImageColorProfiles,
111 ::switches::kEnableLogging, 110 ::switches::kEnableLogging,
112 ::switches::kEnableLowResTiling, 111 ::switches::kEnableLowResTiling,
113 ::switches::kEnableOneCopy, 112 ::switches::kEnableOneCopy,
114 ::switches::kEnablePinch, 113 ::switches::kEnablePinch,
115 ::switches::kEnablePreferCompositingToLCDText, 114 ::switches::kEnablePreferCompositingToLCDText,
116 ::switches::kEnablePluginPlaceholderShadowDom, 115 ::switches::kEnablePluginPlaceholderShadowDom,
117 ::switches::kEnableSlimmingPaint, 116 ::switches::kEnableSlimmingPaint,
118 ::switches::kEnableThreadedGpuRasterization,
119 ::switches::kEnableTouchDragDrop, 117 ::switches::kEnableTouchDragDrop,
120 ::switches::kEnableTouchEditing, 118 ::switches::kEnableTouchEditing,
121 ::switches::kEnableViewport, 119 ::switches::kEnableViewport,
122 ::switches::kEnableViewportMeta, 120 ::switches::kEnableViewportMeta,
123 ::switches::kEnableZeroCopy, 121 ::switches::kEnableZeroCopy,
124 ::switches::kMainFrameResizesAreOrientationChanges, 122 ::switches::kMainFrameResizesAreOrientationChanges,
125 ::switches::kForceDeviceScaleFactor, 123 ::switches::kForceDeviceScaleFactor,
126 ::switches::kForceGpuRasterization, 124 ::switches::kForceGpuRasterization,
127 ::switches::kGpuRasterizationMSAASampleCount, 125 ::switches::kGpuRasterizationMSAASampleCount,
128 ::switches::kGpuStartupDialog, 126 ::switches::kGpuStartupDialog,
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 // Relaunch chrome without session manager on dev box. 376 // Relaunch chrome without session manager on dev box.
379 ReLaunch(command_line); 377 ReLaunch(command_line);
380 return; 378 return;
381 } 379 }
382 380
383 // ChromeRestartRequest deletes itself after request sent to session manager. 381 // ChromeRestartRequest deletes itself after request sent to session manager.
384 (new ChromeRestartRequest(command_line))->Start(); 382 (new ChromeRestartRequest(command_line))->Start();
385 } 383 }
386 384
387 } // namespace chromeos 385 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | content/browser/gpu/compositor_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698