| 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 CHROME_BROWSER_UI_VIEWS_APPS_APP_WINDOW_DESKTOP_NATIVE_WIDGET_AURA_WIN_H
_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_APPS_APP_WINDOW_DESKTOP_NATIVE_WIDGET_AURA_WIN_H
_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_APPS_APP_WINDOW_DESKTOP_NATIVE_WIDGET_AURA_WIN_H
_ | 6 #define CHROME_BROWSER_UI_VIEWS_APPS_APP_WINDOW_DESKTOP_NATIVE_WIDGET_AURA_WIN_H
_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "ui/views/widget/desktop_aura/desktop_native_widget_aura.h" | 9 #include "ui/views/widget/desktop_aura/desktop_native_widget_aura.h" |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 : public views::DesktopNativeWidgetAura { | 22 : public views::DesktopNativeWidgetAura { |
| 23 public: | 23 public: |
| 24 explicit AppWindowDesktopNativeWidgetAuraWin( | 24 explicit AppWindowDesktopNativeWidgetAuraWin( |
| 25 ChromeNativeAppWindowViewsWin* app_window); | 25 ChromeNativeAppWindowViewsWin* app_window); |
| 26 | 26 |
| 27 protected: | 27 protected: |
| 28 virtual ~AppWindowDesktopNativeWidgetAuraWin(); | 28 virtual ~AppWindowDesktopNativeWidgetAuraWin(); |
| 29 | 29 |
| 30 // Overridden from views::DesktopNativeWidgetAura: | 30 // Overridden from views::DesktopNativeWidgetAura: |
| 31 virtual void InitNativeWidget( | 31 virtual void InitNativeWidget( |
| 32 const views::Widget::InitParams& params) OVERRIDE; | 32 const views::Widget::InitParams& params) override; |
| 33 | 33 |
| 34 private: | 34 private: |
| 35 // Ownership managed by the views system. | 35 // Ownership managed by the views system. |
| 36 ChromeNativeAppWindowViewsWin* app_window_; | 36 ChromeNativeAppWindowViewsWin* app_window_; |
| 37 | 37 |
| 38 DISALLOW_COPY_AND_ASSIGN(AppWindowDesktopNativeWidgetAuraWin); | 38 DISALLOW_COPY_AND_ASSIGN(AppWindowDesktopNativeWidgetAuraWin); |
| 39 }; | 39 }; |
| 40 | 40 |
| 41 #endif // CHROME_BROWSER_UI_VIEWS_APPS_APP_WINDOW_DESKTOP_NATIVE_WIDGET_AURA_WI
N_H_ | 41 #endif // CHROME_BROWSER_UI_VIEWS_APPS_APP_WINDOW_DESKTOP_NATIVE_WIDGET_AURA_WI
N_H_ |
| OLD | NEW |