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

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

Issue 2612123002: cc: Add a flag to check for tile priority inversion in AssignGpuMemory. (Closed)
Patch Set: master: compile_fix Created 3 years, 11 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 <sys/socket.h> 7 #include <sys/socket.h>
8 #include <vector> 8 #include <vector>
9 9
10 #include "ash/common/ash_switches.h" 10 #include "ash/common/ash_switches.h"
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 ash::switches::kAshEnablePaletteOnAllDisplays, 182 ash::switches::kAshEnablePaletteOnAllDisplays,
183 ash::switches::kAshTouchHud, 183 ash::switches::kAshTouchHud,
184 ash::switches::kAuraLegacyPowerButton, 184 ash::switches::kAuraLegacyPowerButton,
185 chromeos::switches::kDefaultWallpaperLarge, 185 chromeos::switches::kDefaultWallpaperLarge,
186 chromeos::switches::kDefaultWallpaperSmall, 186 chromeos::switches::kDefaultWallpaperSmall,
187 chromeos::switches::kGuestWallpaperLarge, 187 chromeos::switches::kGuestWallpaperLarge,
188 chromeos::switches::kGuestWallpaperSmall, 188 chromeos::switches::kGuestWallpaperSmall,
189 // Please keep these in alphabetical order. Non-UI Compositor switches 189 // Please keep these in alphabetical order. Non-UI Compositor switches
190 // here should also be added to 190 // here should also be added to
191 // content/browser/renderer_host/render_process_host_impl.cc. 191 // content/browser/renderer_host/render_process_host_impl.cc.
192 cc::switches::kCheckTilePriorityInversion,
192 cc::switches::kDisableCachedPictureRaster, 193 cc::switches::kDisableCachedPictureRaster,
193 cc::switches::kDisableCompositedAntialiasing, 194 cc::switches::kDisableCompositedAntialiasing,
194 cc::switches::kDisableMainFrameBeforeActivation, 195 cc::switches::kDisableMainFrameBeforeActivation,
195 cc::switches::kDisableThreadedAnimation, 196 cc::switches::kDisableThreadedAnimation,
196 cc::switches::kEnableColorCorrectRendering, 197 cc::switches::kEnableColorCorrectRendering,
197 cc::switches::kEnableGpuBenchmarking, 198 cc::switches::kEnableGpuBenchmarking,
198 cc::switches::kEnableLayerLists, 199 cc::switches::kEnableLayerLists,
199 cc::switches::kEnableMainFrameBeforeActivation, 200 cc::switches::kEnableMainFrameBeforeActivation,
200 cc::switches::kEnableTrueColorRendering, 201 cc::switches::kEnableTrueColorRendering,
201 cc::switches::kShowCompositedLayerBorders, 202 cc::switches::kShowCompositedLayerBorders,
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 // Relaunch chrome without session manager on dev box. 390 // Relaunch chrome without session manager on dev box.
390 ReLaunch(command_line); 391 ReLaunch(command_line);
391 return; 392 return;
392 } 393 }
393 394
394 // ChromeRestartRequest deletes itself after request sent to session manager. 395 // ChromeRestartRequest deletes itself after request sent to session manager.
395 (new ChromeRestartRequest(command_line.argv()))->Start(); 396 (new ChromeRestartRequest(command_line.argv()))->Start();
396 } 397 }
397 398
398 } // namespace chromeos 399 } // namespace chromeos
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_settings.h ('k') | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698