| OLD | NEW |
| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 ::switches::kDisablePreferCompositingToLCDText, | 96 ::switches::kDisablePreferCompositingToLCDText, |
| 97 ::switches::kDisablePanelFitting, | 97 ::switches::kDisablePanelFitting, |
| 98 ::switches::kDisableRGBA4444Textures, | 98 ::switches::kDisableRGBA4444Textures, |
| 99 ::switches::kDisableSeccompFilterSandbox, | 99 ::switches::kDisableSeccompFilterSandbox, |
| 100 ::switches::kDisableSetuidSandbox, | 100 ::switches::kDisableSetuidSandbox, |
| 101 ::switches::kDisableSlimmingPaintInvalidation, | 101 ::switches::kDisableSlimmingPaintInvalidation, |
| 102 ::switches::kDisableThreadedScrolling, | 102 ::switches::kDisableThreadedScrolling, |
| 103 ::switches::kDisableTouchDragDrop, | 103 ::switches::kDisableTouchDragDrop, |
| 104 ::switches::kDisableZeroCopy, | 104 ::switches::kDisableZeroCopy, |
| 105 ::switches::kEnableBlinkFeatures, | 105 ::switches::kEnableBlinkFeatures, |
| 106 ::switches::kEnableColorCorrectRendering, | |
| 107 ::switches::kDisableDisplayList2dCanvas, | 106 ::switches::kDisableDisplayList2dCanvas, |
| 108 ::switches::kEnableDisplayList2dCanvas, | 107 ::switches::kEnableDisplayList2dCanvas, |
| 109 ::switches::kForceDisplayList2dCanvas, | 108 ::switches::kForceDisplayList2dCanvas, |
| 110 ::switches::kDisableGpuSandbox, | 109 ::switches::kDisableGpuSandbox, |
| 111 ::switches::kEnableDistanceFieldText, | 110 ::switches::kEnableDistanceFieldText, |
| 112 ::switches::kEnableGpuMemoryBufferVideoFrames, | 111 ::switches::kEnableGpuMemoryBufferVideoFrames, |
| 113 ::switches::kEnableGpuRasterization, | 112 ::switches::kEnableGpuRasterization, |
| 114 ::switches::kEnableLogging, | 113 ::switches::kEnableLogging, |
| 115 ::switches::kEnableLowResTiling, | 114 ::switches::kEnableLowResTiling, |
| 116 ::switches::kDisablePartialRaster, | 115 ::switches::kDisablePartialRaster, |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 // Relaunch chrome without session manager on dev box. | 389 // Relaunch chrome without session manager on dev box. |
| 391 ReLaunch(command_line); | 390 ReLaunch(command_line); |
| 392 return; | 391 return; |
| 393 } | 392 } |
| 394 | 393 |
| 395 // ChromeRestartRequest deletes itself after request sent to session manager. | 394 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 396 (new ChromeRestartRequest(command_line.argv()))->Start(); | 395 (new ChromeRestartRequest(command_line.argv()))->Start(); |
| 397 } | 396 } |
| 398 | 397 |
| 399 } // namespace chromeos | 398 } // namespace chromeos |
| OLD | NEW |