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/browser/chromeos/login/chrome_restart_request.cc

Issue 2903053002: Removing canvas rendering mode switching feature (Closed)
Patch Set: fix test failure Created 3 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/browser/about_flags.cc ('k') | chrome/browser/flag_descriptions.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 <sys/socket.h> 7 #include <sys/socket.h>
8 #include <vector> 8 #include <vector>
9 9
10 #include "ash/ash_switches.h" 10 #include "ash/ash_switches.h"
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 ::switches::kDisableSetuidSandbox, 101 ::switches::kDisableSetuidSandbox,
102 ::switches::kDisableSlimmingPaintInvalidation, 102 ::switches::kDisableSlimmingPaintInvalidation,
103 ::switches::kDisableThreadedScrolling, 103 ::switches::kDisableThreadedScrolling,
104 ::switches::kDisableTouchDragDrop, 104 ::switches::kDisableTouchDragDrop,
105 ::switches::kDisableZeroCopy, 105 ::switches::kDisableZeroCopy,
106 ::switches::kEnableBlinkFeatures, 106 ::switches::kEnableBlinkFeatures,
107 ::switches::kEnableColorCorrectRendering, 107 ::switches::kEnableColorCorrectRendering,
108 ::switches::kDisableDisplayList2dCanvas, 108 ::switches::kDisableDisplayList2dCanvas,
109 ::switches::kEnableDisplayList2dCanvas, 109 ::switches::kEnableDisplayList2dCanvas,
110 ::switches::kForceDisplayList2dCanvas, 110 ::switches::kForceDisplayList2dCanvas,
111 ::switches::kEnableCanvas2dDynamicRenderingModeSwitching,
112 ::switches::kDisableGpuSandbox, 111 ::switches::kDisableGpuSandbox,
113 ::switches::kEnableDistanceFieldText, 112 ::switches::kEnableDistanceFieldText,
114 ::switches::kEnableGpuAsyncWorkerContext, 113 ::switches::kEnableGpuAsyncWorkerContext,
115 ::switches::kEnableGpuMemoryBufferVideoFrames, 114 ::switches::kEnableGpuMemoryBufferVideoFrames,
116 ::switches::kEnableGpuRasterization, 115 ::switches::kEnableGpuRasterization,
117 ::switches::kEnableLogging, 116 ::switches::kEnableLogging,
118 ::switches::kEnableLowResTiling, 117 ::switches::kEnableLowResTiling,
119 ::switches::kDisablePartialRaster, 118 ::switches::kDisablePartialRaster,
120 ::switches::kEnablePartialRaster, 119 ::switches::kEnablePartialRaster,
121 ::switches::kEnablePinch, 120 ::switches::kEnablePinch,
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 // Relaunch chrome without session manager on dev box. 392 // Relaunch chrome without session manager on dev box.
394 ReLaunch(command_line); 393 ReLaunch(command_line);
395 return; 394 return;
396 } 395 }
397 396
398 // ChromeRestartRequest deletes itself after request sent to session manager. 397 // ChromeRestartRequest deletes itself after request sent to session manager.
399 (new ChromeRestartRequest(command_line.argv()))->Start(); 398 (new ChromeRestartRequest(command_line.argv()))->Start();
400 } 399 }
401 400
402 } // namespace chromeos 401 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/browser/flag_descriptions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698