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_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 | 7 |
8 #include "base/basictypes.h" | |
9 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
10 #include "chrome/browser/ui/sad_tab.h" | 10 #include "chrome/browser/ui/sad_tab.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 "ui/views/controls/styled_label.h" | 13 #include "ui/views/controls/styled_label.h" |
14 #include "ui/views/controls/styled_label_listener.h" | 14 #include "ui/views/controls/styled_label_listener.h" |
15 #include "ui/views/view.h" | 15 #include "ui/views/view.h" |
16 | 16 |
17 namespace content { | 17 namespace content { |
18 class WebContents; | 18 class WebContents; |
19 } | 19 } |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 views::Link* help_link_; | 73 views::Link* help_link_; |
74 views::LabelButton* action_button_; | 74 views::LabelButton* action_button_; |
75 views::Label* title_; | 75 views::Label* title_; |
76 views::StyledLabel* help_message_; | 76 views::StyledLabel* help_message_; |
77 static int total_crashes_; | 77 static int total_crashes_; |
78 | 78 |
79 DISALLOW_COPY_AND_ASSIGN(SadTabView); | 79 DISALLOW_COPY_AND_ASSIGN(SadTabView); |
80 }; | 80 }; |
81 | 81 |
82 #endif // CHROME_BROWSER_UI_VIEWS_SAD_TAB_VIEW_H__ | 82 #endif // CHROME_BROWSER_UI_VIEWS_SAD_TAB_VIEW_H__ |
OLD | NEW |