| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #include "gpu/command_buffer/service/gpu_switches.h" | 42 #include "gpu/command_buffer/service/gpu_switches.h" |
| 43 #include "gpu/ipc/service/switches.h" | 43 #include "gpu/ipc/service/switches.h" |
| 44 #include "media/base/media_switches.h" | 44 #include "media/base/media_switches.h" |
| 45 #include "media/media_features.h" | 45 #include "media/media_features.h" |
| 46 #include "third_party/cros_system_api/switches/chrome_switches.h" | 46 #include "third_party/cros_system_api/switches/chrome_switches.h" |
| 47 #include "ui/app_list/app_list_switches.h" | 47 #include "ui/app_list/app_list_switches.h" |
| 48 #include "ui/base/ui_base_switches.h" | 48 #include "ui/base/ui_base_switches.h" |
| 49 #include "ui/compositor/compositor_switches.h" | 49 #include "ui/compositor/compositor_switches.h" |
| 50 #include "ui/display/display_switches.h" | 50 #include "ui/display/display_switches.h" |
| 51 #include "ui/events/event_switches.h" | 51 #include "ui/events/event_switches.h" |
| 52 #include "ui/gfx/switches.h" | 52 #include "ui/gfx/color_space_switches.h" |
| 53 #include "ui/gl/gl_switches.h" | 53 #include "ui/gl/gl_switches.h" |
| 54 #include "ui/ozone/public/ozone_switches.h" | 54 #include "ui/ozone/public/ozone_switches.h" |
| 55 #include "ui/wm/core/wm_core_switches.h" | 55 #include "ui/wm/core/wm_core_switches.h" |
| 56 #include "url/gurl.h" | 56 #include "url/gurl.h" |
| 57 | 57 |
| 58 using content::BrowserThread; | 58 using content::BrowserThread; |
| 59 | 59 |
| 60 namespace chromeos { | 60 namespace chromeos { |
| 61 | 61 |
| 62 namespace { | 62 namespace { |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 // Relaunch chrome without session manager on dev box. | 390 // Relaunch chrome without session manager on dev box. |
| 391 ReLaunch(command_line); | 391 ReLaunch(command_line); |
| 392 return; | 392 return; |
| 393 } | 393 } |
| 394 | 394 |
| 395 // ChromeRestartRequest deletes itself after request sent to session manager. | 395 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 396 (new ChromeRestartRequest(command_line.argv()))->Start(); | 396 (new ChromeRestartRequest(command_line.argv()))->Start(); |
| 397 } | 397 } |
| 398 | 398 |
| 399 } // namespace chromeos | 399 } // namespace chromeos |
| OLD | NEW |