| 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 #ifndef EXTENSIONS_SHELL_BROWSER_SHELL_DESKTOP_CONTROLLER_AURA_H_ |    5 #ifndef EXTENSIONS_SHELL_BROWSER_SHELL_DESKTOP_CONTROLLER_AURA_H_ | 
|    6 #define EXTENSIONS_SHELL_BROWSER_SHELL_DESKTOP_CONTROLLER_AURA_H_ |    6 #define EXTENSIONS_SHELL_BROWSER_SHELL_DESKTOP_CONTROLLER_AURA_H_ | 
|    7  |    7  | 
|    8 #include <memory> |    8 #include <memory> | 
|    9 #include <vector> |    9 #include <vector> | 
|   10  |   10  | 
|   11 #include "base/compiler_specific.h" |   11 #include "base/compiler_specific.h" | 
|   12 #include "base/macros.h" |   12 #include "base/macros.h" | 
|   13 #include "build/build_config.h" |   13 #include "build/build_config.h" | 
|   14 #include "extensions/shell/browser/desktop_controller.h" |   14 #include "extensions/shell/browser/desktop_controller.h" | 
|   15 #include "ui/aura/client/window_parenting_client.h" |   15 #include "ui/aura/client/window_parenting_client.h" | 
|   16 #include "ui/aura/window_tree_host_observer.h" |   16 #include "ui/aura/window_tree_host_observer.h" | 
|   17  |   17  | 
|   18 #if defined(OS_CHROMEOS) |   18 #if defined(OS_CHROMEOS) | 
|   19 #include "chromeos/dbus/power_manager_client.h" |   19 #include "chromeos/dbus/power_manager_client.h" | 
|   20 #include "ui/display/chromeos/display_configurator.h" |   20 #include "ui/display/manager/chromeos/display_configurator.h" | 
|   21 #endif |   21 #endif | 
|   22  |   22  | 
|   23 namespace aura { |   23 namespace aura { | 
|   24 class Window; |   24 class Window; | 
|   25 class WindowTreeHost; |   25 class WindowTreeHost; | 
|   26 namespace client { |   26 namespace client { | 
|   27 class DefaultCaptureClient; |   27 class DefaultCaptureClient; | 
|   28 class FocusClient; |   28 class FocusClient; | 
|   29 } |   29 } | 
|   30 } |   30 } | 
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  134  |  134  | 
|  135   // NativeAppWindow::Close() deletes the AppWindow. |  135   // NativeAppWindow::Close() deletes the AppWindow. | 
|  136   std::vector<AppWindow*> app_windows_; |  136   std::vector<AppWindow*> app_windows_; | 
|  137  |  137  | 
|  138   DISALLOW_COPY_AND_ASSIGN(ShellDesktopControllerAura); |  138   DISALLOW_COPY_AND_ASSIGN(ShellDesktopControllerAura); | 
|  139 }; |  139 }; | 
|  140  |  140  | 
|  141 }  // namespace extensions |  141 }  // namespace extensions | 
|  142  |  142  | 
|  143 #endif  // EXTENSIONS_SHELL_BROWSER_SHELL_DESKTOP_CONTROLLER_AURA_H_ |  143 #endif  // EXTENSIONS_SHELL_BROWSER_SHELL_DESKTOP_CONTROLLER_AURA_H_ | 
| OLD | NEW |