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 <vector> | 7 #include <vector> |
8 | 8 |
9 #include "ash/ash_switches.h" | 9 #include "ash/ash_switches.h" |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 ::switches::kEnablePreferCompositingToLCDText, | 97 ::switches::kEnablePreferCompositingToLCDText, |
98 ::switches::kEnableDelegatedRenderer, | 98 ::switches::kEnableDelegatedRenderer, |
99 ::switches::kDisableDisplayList2dCanvas, | 99 ::switches::kDisableDisplayList2dCanvas, |
100 ::switches::kEnableDisplayList2dCanvas, | 100 ::switches::kEnableDisplayList2dCanvas, |
101 ::switches::kForceDisplayList2dCanvas, | 101 ::switches::kForceDisplayList2dCanvas, |
102 ::switches::kEnableEncryptedMedia, | 102 ::switches::kEnableEncryptedMedia, |
103 ::switches::kDisableGpuSandbox, | 103 ::switches::kDisableGpuSandbox, |
104 ::switches::kEnableDistanceFieldText, | 104 ::switches::kEnableDistanceFieldText, |
105 ::switches::kEnableGpuRasterization, | 105 ::switches::kEnableGpuRasterization, |
106 ::switches::kEnableImageColorProfiles, | 106 ::switches::kEnableImageColorProfiles, |
107 ::switches::kEnableImplSidePainting, | |
108 ::switches::kEnableLogging, | 107 ::switches::kEnableLogging, |
109 ::switches::kEnableLowResTiling, | 108 ::switches::kEnableLowResTiling, |
110 ::switches::kEnableOneCopy, | 109 ::switches::kEnableOneCopy, |
111 ::switches::kEnablePinch, | 110 ::switches::kEnablePinch, |
112 ::switches::kEnablePluginPlaceholderShadowDom, | 111 ::switches::kEnablePluginPlaceholderShadowDom, |
113 ::switches::kEnableSlimmingPaint, | 112 ::switches::kEnableSlimmingPaint, |
114 ::switches::kEnableTouchDragDrop, | 113 ::switches::kEnableTouchDragDrop, |
115 ::switches::kEnableTouchEditing, | 114 ::switches::kEnableTouchEditing, |
116 ::switches::kEnableViewport, | 115 ::switches::kEnableViewport, |
117 ::switches::kEnableViewportMeta, | 116 ::switches::kEnableViewportMeta, |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 // Relaunch chrome without session manager on dev box. | 374 // Relaunch chrome without session manager on dev box. |
376 ReLaunch(command_line); | 375 ReLaunch(command_line); |
377 return; | 376 return; |
378 } | 377 } |
379 | 378 |
380 // ChromeRestartRequest deletes itself after request sent to session manager. | 379 // ChromeRestartRequest deletes itself after request sent to session manager. |
381 (new ChromeRestartRequest(command_line))->Start(); | 380 (new ChromeRestartRequest(command_line))->Start(); |
382 } | 381 } |
383 | 382 |
384 } // namespace chromeos | 383 } // namespace chromeos |
OLD | NEW |