| OLD | NEW |
| 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/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 | 14 |
| 15 namespace views { | 15 namespace views { |
| 16 class CheckBox; | 16 class CheckBox; |
| 17 class Label; | 17 class Label; |
| 18 class Throbber; | 18 class Throbber; |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 // Save the description the user types in when we clear the dialog for the | 118 // 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 | 119 // 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. | 120 // their original text so they don't have to type it again. |
| 121 std::wstring old_report_text_; | 121 std::wstring old_report_text_; |
| 122 | 122 |
| 123 DISALLOW_EVIL_CONSTRUCTORS(BugReportView); | 123 DISALLOW_EVIL_CONSTRUCTORS(BugReportView); |
| 124 }; | 124 }; |
| 125 | 125 |
| 126 #endif // CHROME_BROWSER_VIEWS_BUGREPORT_VIEW_H__ | 126 #endif // CHROME_BROWSER_VIEWS_BUGREPORT_VIEW_H__ |
| 127 | 127 |
| OLD | NEW |