| 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::kDisableSlimmingPaintInvalidation, |
| 123 ::switches::kEnableSlimmingPaintInvalidation, | 124 ::switches::kEnableSlimmingPaintInvalidation, |
| 124 ::switches::kEnableTouchDragDrop, | 125 ::switches::kEnableTouchDragDrop, |
| 125 ::switches::kEnableUnifiedDesktop, | 126 ::switches::kEnableUnifiedDesktop, |
| 126 ::switches::kEnableUseZoomForDSF, | 127 ::switches::kEnableUseZoomForDSF, |
| 127 ::switches::kEnableViewport, | 128 ::switches::kEnableViewport, |
| 128 ::switches::kEnableZeroCopy, | 129 ::switches::kEnableZeroCopy, |
| 129 #if defined(USE_OZONE) | 130 #if defined(USE_OZONE) |
| 130 ::switches::kExtraTouchNoiseFiltering, | 131 ::switches::kExtraTouchNoiseFiltering, |
| 131 #endif | 132 #endif |
| 132 ::switches::kHostWindowBounds, | 133 ::switches::kHostWindowBounds, |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 // Relaunch chrome without session manager on dev box. | 391 // Relaunch chrome without session manager on dev box. |
| 391 ReLaunch(command_line); | 392 ReLaunch(command_line); |
| 392 return; | 393 return; |
| 393 } | 394 } |
| 394 | 395 |
| 395 // ChromeRestartRequest deletes itself after request sent to session manager. | 396 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 396 (new ChromeRestartRequest(command_line.argv()))->Start(); | 397 (new ChromeRestartRequest(command_line.argv()))->Start(); |
| 397 } | 398 } |
| 398 | 399 |
| 399 } // namespace chromeos | 400 } // namespace chromeos |
| OLD | NEW |