Chromium Code Reviews| Index: chrome/browser/bug_report_data.h |
| diff --git a/chrome/browser/bug_report_data.h b/chrome/browser/bug_report_data.h |
| index f8da055067d0f0b4a165d4915a75eeceee929dcd..e329b81e791d25f39d04ae0001385c4fba003259 100644 |
| --- a/chrome/browser/bug_report_data.h |
| +++ b/chrome/browser/bug_report_data.h |
| @@ -9,24 +9,18 @@ |
| #include <vector> |
| #include "base/utf_string_conversions.h" |
| -#include "chrome/browser/bug_report_util.h" |
| #if defined(OS_CHROMEOS) |
| #include "chrome/browser/chromeos/system/syslogs_provider.h" |
| #endif |
| +class Profile; |
|
stevenjb
2011/08/03 01:55:20
forward declaration required with removal of bug_r
|
| + |
| class BugReportData { |
| public: |
| - // Make sure we initialize these flags to false since SyslogsComplete |
| - // may be triggered before we've called update data; in which case, |
| - // we do not want it to just delete the logs it just gathered, and we |
| - // don't want it to send the report either - this will make sure that if |
| - // SyslogsComplete gets called before UpdateData, we'll simply populate the |
| - // sys_info and zip_content fields and exit without disturbing anything else |
|
stevenjb
2011/08/03 01:55:20
Implementation detail comment belongs in C++ file.
|
| BugReportData(); |
| ~BugReportData(); |
| - // Defined in bug_report_ui.cc |
|
stevenjb
2011/08/03 01:55:20
No longer true.
|
| void SendReport(); |
| void UpdateData(Profile* profile, |