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

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

Issue 22394006: Get rid of webkit/plugins/plugin_switches.* and move them to content/public/common/content_switches… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 4 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/chromeos/chromeos_version.h" 10 #include "base/chromeos/chromeos_version.h"
(...skipping 22 matching lines...) Expand all
33 #include "content/public/browser/browser_thread.h" 33 #include "content/public/browser/browser_thread.h"
34 #include "content/public/common/content_switches.h" 34 #include "content/public/common/content_switches.h"
35 #include "gpu/command_buffer/service/gpu_switches.h" 35 #include "gpu/command_buffer/service/gpu_switches.h"
36 #include "media/base/media_switches.h" 36 #include "media/base/media_switches.h"
37 #include "ui/base/ui_base_switches.h" 37 #include "ui/base/ui_base_switches.h"
38 #include "ui/compositor/compositor_switches.h" 38 #include "ui/compositor/compositor_switches.h"
39 #include "ui/gfx/switches.h" 39 #include "ui/gfx/switches.h"
40 #include "ui/gl/gl_switches.h" 40 #include "ui/gl/gl_switches.h"
41 #include "ui/views/corewm/corewm_switches.h" 41 #include "ui/views/corewm/corewm_switches.h"
42 #include "url/gurl.h" 42 #include "url/gurl.h"
43 #include "webkit/plugins/plugin_switches.h"
44 43
45 using content::BrowserThread; 44 using content::BrowserThread;
46 45
47 namespace chromeos { 46 namespace chromeos {
48 47
49 namespace { 48 namespace {
50 49
51 // Increase logging level for Guest mode to avoid LOG(INFO) messages in logs. 50 // Increase logging level for Guest mode to avoid LOG(INFO) messages in logs.
52 const char kGuestModeLoggingLevel[] = "1"; 51 const char kGuestModeLoggingLevel[] = "1";
53 52
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 // Relaunch chrome without session manager on dev box. 351 // Relaunch chrome without session manager on dev box.
353 ReLaunch(command_line); 352 ReLaunch(command_line);
354 return; 353 return;
355 } 354 }
356 355
357 // ChromeRestartRequest deletes itself after request sent to session manager. 356 // ChromeRestartRequest deletes itself after request sent to session manager.
358 (new ChromeRestartRequest(command_line))->Start(); 357 (new ChromeRestartRequest(command_line))->Start();
359 } 358 }
360 359
361 } // namespace chromeos 360 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chrome_content_browser_client.cc ('k') | content/browser/gpu/gpu_data_manager_impl_private.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698