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

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

Issue 2616773002: Propagate kForceGpuMemAvailableMb flag to the renderer. (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | content/browser/renderer_host/render_process_host_impl.cc » ('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/common/ash_switches.h" 10 #include "ash/common/ash_switches.h"
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 ::switches::kEnableUnifiedDesktop, 126 ::switches::kEnableUnifiedDesktop,
127 ::switches::kEnableUseZoomForDSF, 127 ::switches::kEnableUseZoomForDSF,
128 ::switches::kEnableViewport, 128 ::switches::kEnableViewport,
129 ::switches::kEnableZeroCopy, 129 ::switches::kEnableZeroCopy,
130 #if defined(USE_OZONE) 130 #if defined(USE_OZONE)
131 ::switches::kExtraTouchNoiseFiltering, 131 ::switches::kExtraTouchNoiseFiltering,
132 #endif 132 #endif
133 ::switches::kHostWindowBounds, 133 ::switches::kHostWindowBounds,
134 ::switches::kMainFrameResizesAreOrientationChanges, 134 ::switches::kMainFrameResizesAreOrientationChanges,
135 ::switches::kForceDeviceScaleFactor, 135 ::switches::kForceDeviceScaleFactor,
136 ::switches::kForceGpuMemAvailableMb,
136 ::switches::kForceGpuRasterization, 137 ::switches::kForceGpuRasterization,
137 ::switches::kGpuRasterizationMSAASampleCount, 138 ::switches::kGpuRasterizationMSAASampleCount,
138 ::switches::kGpuStartupDialog, 139 ::switches::kGpuStartupDialog,
139 ::switches::kGpuSandboxAllowSysVShm, 140 ::switches::kGpuSandboxAllowSysVShm,
140 ::switches::kGpuSandboxFailuresFatal, 141 ::switches::kGpuSandboxFailuresFatal,
141 ::switches::kGpuSandboxStartEarly, 142 ::switches::kGpuSandboxStartEarly,
142 ::switches::kNoSandbox, 143 ::switches::kNoSandbox,
143 ::switches::kNumRasterThreads, 144 ::switches::kNumRasterThreads,
144 ::switches::kPpapiFlashArgs, 145 ::switches::kPpapiFlashArgs,
145 ::switches::kPpapiFlashPath, 146 ::switches::kPpapiFlashPath,
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 // Relaunch chrome without session manager on dev box. 392 // Relaunch chrome without session manager on dev box.
392 ReLaunch(command_line); 393 ReLaunch(command_line);
393 return; 394 return;
394 } 395 }
395 396
396 // ChromeRestartRequest deletes itself after request sent to session manager. 397 // ChromeRestartRequest deletes itself after request sent to session manager.
397 (new ChromeRestartRequest(command_line.argv()))->Start(); 398 (new ChromeRestartRequest(command_line.argv()))->Start();
398 } 399 }
399 400
400 } // namespace chromeos 401 } // namespace chromeos
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698