| 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/common/ash_switches.h" | 10 #include "ash/common/ash_switches.h" |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 ::switches::kEnableGpuMemoryBufferVideoFrames, | 113 ::switches::kEnableGpuMemoryBufferVideoFrames, |
| 114 ::switches::kEnableGpuRasterization, | 114 ::switches::kEnableGpuRasterization, |
| 115 ::switches::kEnableLogging, | 115 ::switches::kEnableLogging, |
| 116 ::switches::kEnableLowResTiling, | 116 ::switches::kEnableLowResTiling, |
| 117 ::switches::kDisablePartialRaster, | 117 ::switches::kDisablePartialRaster, |
| 118 ::switches::kEnablePartialRaster, | 118 ::switches::kEnablePartialRaster, |
| 119 ::switches::kEnablePinch, | 119 ::switches::kEnablePinch, |
| 120 ::switches::kEnablePreferCompositingToLCDText, | 120 ::switches::kEnablePreferCompositingToLCDText, |
| 121 ::switches::kEnableRGBA4444Textures, | 121 ::switches::kEnableRGBA4444Textures, |
| 122 ::switches::kEnableSlimmingPaintV2, | 122 ::switches::kEnableSlimmingPaintV2, |
| 123 ::switches::kEnableSlimmingPaintInvalidation, |
| 123 ::switches::kEnableTouchDragDrop, | 124 ::switches::kEnableTouchDragDrop, |
| 124 ::switches::kEnableUnifiedDesktop, | 125 ::switches::kEnableUnifiedDesktop, |
| 125 ::switches::kEnableUseZoomForDSF, | 126 ::switches::kEnableUseZoomForDSF, |
| 126 ::switches::kEnableViewport, | 127 ::switches::kEnableViewport, |
| 127 ::switches::kEnableZeroCopy, | 128 ::switches::kEnableZeroCopy, |
| 128 #if defined(USE_OZONE) | 129 #if defined(USE_OZONE) |
| 129 ::switches::kExtraTouchNoiseFiltering, | 130 ::switches::kExtraTouchNoiseFiltering, |
| 130 #endif | 131 #endif |
| 131 ::switches::kHostWindowBounds, | 132 ::switches::kHostWindowBounds, |
| 132 ::switches::kMainFrameResizesAreOrientationChanges, | 133 ::switches::kMainFrameResizesAreOrientationChanges, |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |
| OLD | NEW |