Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(261)

Side by Side Diff: chrome/browser/views/bug_report_view.h

Issue 20378: Reduce the amount of included header files. Vast change like in "Oh God! This... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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_VIEWS_BUGREPORT_VIEW_H__ 5 #ifndef CHROME_BROWSER_VIEWS_BUGREPORT_VIEW_H_
6 #define CHROME_BROWSER_VIEWS_BUGREPORT_VIEW_H__ 6 #define CHROME_BROWSER_VIEWS_BUGREPORT_VIEW_H_
7 7
8 #include "chrome/browser/net/url_fetcher.h" 8 #include "chrome/browser/net/url_fetcher.h"
9 #include "chrome/views/combo_box.h" 9 #include "chrome/views/combo_box.h"
10 #include "chrome/views/dialog_delegate.h" 10 #include "chrome/views/dialog_delegate.h"
11 #include "chrome/views/native_button.h" 11 #include "chrome/views/native_button.h"
12 #include "chrome/views/text_field.h" 12 #include "chrome/views/text_field.h"
13 #include "chrome/views/view.h" 13 #include "chrome/views/view.h"
14 #include "googleurl/src/gurl.h"
14 15
15 namespace views { 16 namespace views {
16 class CheckBox; 17 class CheckBox;
17 class Label; 18 class Label;
18 class Throbber; 19 class Throbber;
19 class Window; 20 class Window;
20 } 21 }
21 22
22 class Profile; 23 class Profile;
23 class TabContents; 24 class TabContents;
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 int problem_type_; 117 int problem_type_;
117 118
118 // Save the description the user types in when we clear the dialog for the 119 // Save the description the user types in when we clear the dialog for the
119 // phishing option. If the user changes the report type back, we reinstate 120 // phishing option. If the user changes the report type back, we reinstate
120 // their original text so they don't have to type it again. 121 // their original text so they don't have to type it again.
121 std::wstring old_report_text_; 122 std::wstring old_report_text_;
122 123
123 DISALLOW_EVIL_CONSTRUCTORS(BugReportView); 124 DISALLOW_EVIL_CONSTRUCTORS(BugReportView);
124 }; 125 };
125 126
126 #endif // CHROME_BROWSER_VIEWS_BUGREPORT_VIEW_H__ 127 #endif // CHROME_BROWSER_VIEWS_BUGREPORT_VIEW_H_
127
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698