| 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_NATIVE_APP_WINDOW_H_ | 5 #ifndef EXTENSIONS_SHELL_BROWSER_SHELL_NATIVE_APP_WINDOW_H_ |
| 6 #define EXTENSIONS_SHELL_BROWSER_SHELL_NATIVE_APP_WINDOW_H_ | 6 #define EXTENSIONS_SHELL_BROWSER_SHELL_NATIVE_APP_WINDOW_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" |
| 8 #include "extensions/browser/app_window/app_window.h" | 9 #include "extensions/browser/app_window/app_window.h" |
| 9 #include "extensions/browser/app_window/native_app_window.h" | 10 #include "extensions/browser/app_window/native_app_window.h" |
| 10 | 11 |
| 11 namespace extensions { | 12 namespace extensions { |
| 12 | 13 |
| 13 // app_shell's NativeAppWindow implementation. | 14 // app_shell's NativeAppWindow implementation. |
| 14 class ShellNativeAppWindow : public NativeAppWindow { | 15 class ShellNativeAppWindow : public NativeAppWindow { |
| 15 public: | 16 public: |
| 16 ShellNativeAppWindow(AppWindow* app_window, | 17 ShellNativeAppWindow(AppWindow* app_window, |
| 17 const AppWindow::CreateParams& params); | 18 const AppWindow::CreateParams& params); |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 71 |
| 71 private: | 72 private: |
| 72 AppWindow* app_window_; | 73 AppWindow* app_window_; |
| 73 | 74 |
| 74 DISALLOW_COPY_AND_ASSIGN(ShellNativeAppWindow); | 75 DISALLOW_COPY_AND_ASSIGN(ShellNativeAppWindow); |
| 75 }; | 76 }; |
| 76 | 77 |
| 77 } // namespace extensions | 78 } // namespace extensions |
| 78 | 79 |
| 79 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_NATIVE_APP_WINDOW_H_ | 80 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_NATIVE_APP_WINDOW_H_ |
| OLD | NEW |