| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_CHROME_VIEWS_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_CHROME_VIEWS_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_CHROME_VIEWS_DELEGATE_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_CHROME_VIEWS_DELEGATE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 virtual HICON GetDefaultWindowIcon() const OVERRIDE; | 39 virtual HICON GetDefaultWindowIcon() const OVERRIDE; |
| 40 #endif | 40 #endif |
| 41 virtual views::NonClientFrameView* CreateDefaultNonClientFrameView( | 41 virtual views::NonClientFrameView* CreateDefaultNonClientFrameView( |
| 42 views::Widget* widget) OVERRIDE; | 42 views::Widget* widget) OVERRIDE; |
| 43 virtual bool UseTransparentWindows() const OVERRIDE; | 43 virtual bool UseTransparentWindows() const OVERRIDE; |
| 44 virtual void AddRef() OVERRIDE; | 44 virtual void AddRef() OVERRIDE; |
| 45 virtual void ReleaseRef() OVERRIDE; | 45 virtual void ReleaseRef() OVERRIDE; |
| 46 | 46 |
| 47 virtual int GetDispositionForEvent(int event_flags) OVERRIDE; | 47 virtual int GetDispositionForEvent(int event_flags) OVERRIDE; |
| 48 | 48 |
| 49 #if defined(USE_AURA) |
| 50 virtual views::NativeWidgetHelperAura* CreateNativeWidgetHelper( |
| 51 views::NativeWidgetAura* native_widget) OVERRIDE; |
| 52 #endif |
| 53 |
| 49 private: | 54 private: |
| 50 DISALLOW_COPY_AND_ASSIGN(ChromeViewsDelegate); | 55 DISALLOW_COPY_AND_ASSIGN(ChromeViewsDelegate); |
| 51 }; | 56 }; |
| 52 | 57 |
| 53 #endif // CHROME_BROWSER_UI_VIEWS_CHROME_VIEWS_DELEGATE_H_ | 58 #endif // CHROME_BROWSER_UI_VIEWS_CHROME_VIEWS_DELEGATE_H_ |
| OLD | NEW |