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_WIDGET_WIDGET_DELEGATE_H_ | 5 #ifndef UI_VIEWS_WIDGET_WIDGET_DELEGATE_H_ |
6 #define VIEWS_WIDGET_WIDGET_DELEGATE_H_ | 6 #define UI_VIEWS_WIDGET_WIDGET_DELEGATE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "ui/base/accessibility/accessibility_types.h" | 12 #include "ui/base/accessibility/accessibility_types.h" |
13 #include "ui/base/ui_base_types.h" | 13 #include "ui/base/ui_base_types.h" |
14 #include "views/view.h" | 14 #include "views/view.h" |
15 | 15 |
16 class SkBitmap; | 16 class SkBitmap; |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 // Overridden from WidgetDelegate: | 171 // Overridden from WidgetDelegate: |
172 virtual Widget* GetWidget() OVERRIDE; | 172 virtual Widget* GetWidget() OVERRIDE; |
173 virtual const Widget* GetWidget() const OVERRIDE; | 173 virtual const Widget* GetWidget() const OVERRIDE; |
174 | 174 |
175 private: | 175 private: |
176 DISALLOW_COPY_AND_ASSIGN(WidgetDelegateView); | 176 DISALLOW_COPY_AND_ASSIGN(WidgetDelegateView); |
177 }; | 177 }; |
178 | 178 |
179 } // namespace views | 179 } // namespace views |
180 | 180 |
181 #endif // VIEWS_WIDGET_WIDGET_DELEGATE_H_ | 181 #endif // UI_VIEWS_WIDGET_WIDGET_DELEGATE_H_ |
OLD | NEW |