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 CHROME_BROWSER_UI_VIEWS_SAD_TAB_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_SAD_TAB_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_SAD_TAB_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_SAD_TAB_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "ui/views/controls/button/button.h" | 11 #include "ui/views/controls/button/button.h" |
12 #include "ui/views/controls/link_listener.h" | 12 #include "ui/views/controls/link_listener.h" |
13 #include "views/view.h" | 13 #include "ui/views/view.h" |
14 | 14 |
15 class TabContents; | 15 class TabContents; |
16 | 16 |
17 namespace gfx { | 17 namespace gfx { |
18 class Font; | 18 class Font; |
19 } | 19 } |
20 | 20 |
21 namespace views { | 21 namespace views { |
22 class Label; | 22 class Label; |
23 class TextButton; | 23 class TextButton; |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 const gfx::Font& base_font_; | 72 const gfx::Font& base_font_; |
73 views::Label* message_; | 73 views::Label* message_; |
74 views::Link* help_link_; | 74 views::Link* help_link_; |
75 views::Link* feedback_link_; | 75 views::Link* feedback_link_; |
76 views::TextButton* reload_button_; | 76 views::TextButton* reload_button_; |
77 | 77 |
78 DISALLOW_COPY_AND_ASSIGN(SadTabView); | 78 DISALLOW_COPY_AND_ASSIGN(SadTabView); |
79 }; | 79 }; |
80 | 80 |
81 #endif // CHROME_BROWSER_UI_VIEWS_SAD_TAB_VIEW_H__ | 81 #endif // CHROME_BROWSER_UI_VIEWS_SAD_TAB_VIEW_H__ |
OLD | NEW |