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

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

Issue 194843004: Move files from ui/views/corewm to ui/wm/core (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 9 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 | Annotate | Revision Log
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 <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 22 matching lines...) Expand all
33 #include "components/policy/core/common/policy_switches.h" 33 #include "components/policy/core/common/policy_switches.h"
34 #include "content/public/browser/browser_thread.h" 34 #include "content/public/browser/browser_thread.h"
35 #include "content/public/common/content_switches.h" 35 #include "content/public/common/content_switches.h"
36 #include "gpu/command_buffer/service/gpu_switches.h" 36 #include "gpu/command_buffer/service/gpu_switches.h"
37 #include "media/base/media_switches.h" 37 #include "media/base/media_switches.h"
38 #include "ui/base/ui_base_switches.h" 38 #include "ui/base/ui_base_switches.h"
39 #include "ui/compositor/compositor_switches.h" 39 #include "ui/compositor/compositor_switches.h"
40 #include "ui/events/event_switches.h" 40 #include "ui/events/event_switches.h"
41 #include "ui/gfx/switches.h" 41 #include "ui/gfx/switches.h"
42 #include "ui/gl/gl_switches.h" 42 #include "ui/gl/gl_switches.h"
43 #include "ui/views/corewm/corewm_switches.h" 43 #include "ui/wm/core/wm_core_switches.h"
44 #include "url/gurl.h" 44 #include "url/gurl.h"
45 45
46 using content::BrowserThread; 46 using content::BrowserThread;
47 47
48 namespace chromeos { 48 namespace chromeos {
49 49
50 namespace { 50 namespace {
51 51
52 // Increase logging level for Guest mode to avoid INFO messages in logs. 52 // Increase logging level for Guest mode to avoid INFO messages in logs.
53 const char kGuestModeLoggingLevel[] = "1"; 53 const char kGuestModeLoggingLevel[] = "1";
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 // Relaunch chrome without session manager on dev box. 350 // Relaunch chrome without session manager on dev box.
351 ReLaunch(command_line); 351 ReLaunch(command_line);
352 return; 352 return;
353 } 353 }
354 354
355 // ChromeRestartRequest deletes itself after request sent to session manager. 355 // ChromeRestartRequest deletes itself after request sent to session manager.
356 (new ChromeRestartRequest(command_line))->Start(); 356 (new ChromeRestartRequest(command_line))->Start();
357 } 357 }
358 358
359 } // namespace chromeos 359 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/events/event_rewriter.cc ('k') | chrome/browser/chromeos/login/user_manager_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698