| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // source code is governed by a BSD-style license that can be found in the | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_VIEWS_CHROME_VIEWS_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_CHROME_VIEWS_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_VIEWS_CHROME_VIEWS_DELEGATE_H_ | 6 #define CHROME_BROWSER_VIEWS_CHROME_VIEWS_DELEGATE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "views/views_delegate.h" | 10 #include "views/views_delegate.h" |
| 11 | 11 |
| 12 class ChromeViewsDelegate : public views::ViewsDelegate { | 12 class ChromeViewsDelegate : public views::ViewsDelegate { |
| 13 public: | 13 public: |
| (...skipping 15 matching lines...) Expand all Loading... |
| 29 virtual HICON GetDefaultWindowIcon() const; | 29 virtual HICON GetDefaultWindowIcon() const; |
| 30 #endif | 30 #endif |
| 31 virtual void AddRef(); | 31 virtual void AddRef(); |
| 32 virtual void ReleaseRef(); | 32 virtual void ReleaseRef(); |
| 33 | 33 |
| 34 private: | 34 private: |
| 35 DISALLOW_COPY_AND_ASSIGN(ChromeViewsDelegate); | 35 DISALLOW_COPY_AND_ASSIGN(ChromeViewsDelegate); |
| 36 }; | 36 }; |
| 37 | 37 |
| 38 #endif // CHROME_BROWSER_VIEWS_CHROME_VIEWS_DELEGATE_H_ | 38 #endif // CHROME_BROWSER_VIEWS_CHROME_VIEWS_DELEGATE_H_ |
| OLD | NEW |