OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "extensions/shell/browser/default_shell_browser_main_delegate.h" | 5 #include "extensions/shell/browser/default_shell_browser_main_delegate.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/file_util.h" | |
9 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/files/file_util.h" |
10 #include "extensions/shell/browser/shell_desktop_controller.h" | 10 #include "extensions/shell/browser/shell_desktop_controller.h" |
11 #include "extensions/shell/browser/shell_extension_system.h" | 11 #include "extensions/shell/browser/shell_extension_system.h" |
12 #include "extensions/shell/common/switches.h" | 12 #include "extensions/shell/common/switches.h" |
13 | 13 |
14 namespace extensions { | 14 namespace extensions { |
15 | 15 |
16 DefaultShellBrowserMainDelegate::DefaultShellBrowserMainDelegate() { | 16 DefaultShellBrowserMainDelegate::DefaultShellBrowserMainDelegate() { |
17 } | 17 } |
18 | 18 |
19 DefaultShellBrowserMainDelegate::~DefaultShellBrowserMainDelegate() { | 19 DefaultShellBrowserMainDelegate::~DefaultShellBrowserMainDelegate() { |
(...skipping 19 matching lines...) Expand all Loading... |
39 } | 39 } |
40 | 40 |
41 void DefaultShellBrowserMainDelegate::Shutdown() { | 41 void DefaultShellBrowserMainDelegate::Shutdown() { |
42 } | 42 } |
43 | 43 |
44 DesktopController* DefaultShellBrowserMainDelegate::CreateDesktopController() { | 44 DesktopController* DefaultShellBrowserMainDelegate::CreateDesktopController() { |
45 return new ShellDesktopController(); | 45 return new ShellDesktopController(); |
46 } | 46 } |
47 | 47 |
48 } // namespace extensions | 48 } // namespace extensions |
OLD | NEW |