Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Side by Side Diff: chrome/browser/chromeos/login/chrome_restart_request.cc

Issue 2915673003: ui/gfx: Use separate components for color_space and switches (Closed)
Patch Set: Review feedback Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | content/browser/gpu/gpu_process_host.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | content/browser/gpu/gpu_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698