OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 VIEWS_DESKTOP_DESKTOP_VIEWS_DELEGATE_H_ | 5 #ifndef UI_VIEWS_DESKTOP_DESKTOP_VIEWS_DELEGATE_H_ |
6 #define VIEWS_DESKTOP_DESKTOP_VIEWS_DELEGATE_H_ | 6 #define UI_VIEWS_DESKTOP_DESKTOP_VIEWS_DELEGATE_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "views/views_delegate.h" | 9 #include "views/views_delegate.h" |
10 | 10 |
11 namespace views { | 11 namespace views { |
12 namespace desktop { | 12 namespace desktop { |
13 | 13 |
14 class DesktopViewsDelegate : public ViewsDelegate { | 14 class DesktopViewsDelegate : public ViewsDelegate { |
15 public: | 15 public: |
16 DesktopViewsDelegate(); | 16 DesktopViewsDelegate(); |
(...skipping 21 matching lines...) Expand all Loading... |
38 #if defined(OS_WIN) | 38 #if defined(OS_WIN) |
39 virtual HICON GetDefaultWindowIcon() const OVERRIDE; | 39 virtual HICON GetDefaultWindowIcon() const OVERRIDE; |
40 #endif | 40 #endif |
41 virtual void AddRef() OVERRIDE; | 41 virtual void AddRef() OVERRIDE; |
42 virtual void ReleaseRef() OVERRIDE; | 42 virtual void ReleaseRef() OVERRIDE; |
43 virtual int GetDispositionForEvent(int event_flags) OVERRIDE; | 43 virtual int GetDispositionForEvent(int event_flags) OVERRIDE; |
44 | 44 |
45 DISALLOW_COPY_AND_ASSIGN(DesktopViewsDelegate); | 45 DISALLOW_COPY_AND_ASSIGN(DesktopViewsDelegate); |
46 }; | 46 }; |
47 | 47 |
48 | |
49 } // namespace desktop | 48 } // namespace desktop |
50 } // namespace views | 49 } // namespace views |
51 | 50 |
52 #endif // VIEWS_DESKTOP_DESKTOP_VIEWS_DELEGATE_H_ | 51 #endif // UI_VIEWS_DESKTOP_DESKTOP_VIEWS_DELEGATE_H_ |
OLD | NEW |