| 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_FEEDBACK_FEEDBACK_DATA_H_ | 5 #ifndef CHROME_BROWSER_FEEDBACK_FEEDBACK_DATA_H_ |
| 6 #define CHROME_BROWSER_FEEDBACK_FEEDBACK_DATA_H_ | 6 #define CHROME_BROWSER_FEEDBACK_FEEDBACK_DATA_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "chrome/browser/ui/webui/screenshot_source.h" | 12 #include "chrome/browser/ui/webui/screenshot_source.h" |
| 13 #include "url/gurl.h" | 13 #include "url/gurl.h" |
| 14 | 14 |
| 15 #if defined(OS_CHROMEOS) | 15 #if defined(OS_CHROMEOS) |
| 16 #include "chrome/browser/chromeos/system_logs/system_logs_fetcher.h" | 16 #include "chrome/browser/chromeos/system_logs/scrubbed_system_logs_fetcher.h" |
| 17 #endif | 17 #endif |
| 18 | 18 |
| 19 class Profile; | 19 class Profile; |
| 20 | 20 |
| 21 class FeedbackData : public base::RefCountedThreadSafe<FeedbackData> { | 21 class FeedbackData : public base::RefCountedThreadSafe<FeedbackData> { |
| 22 public: | 22 public: |
| 23 FeedbackData(); | 23 FeedbackData(); |
| 24 | 24 |
| 25 // Called once we've update all the data from the feedback page. | 25 // Called once we've update all the data from the feedback page. |
| 26 void FeedbackPageDataComplete(); | 26 void FeedbackPageDataComplete(); |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 // been collected yet or are still pending collection. | 141 // been collected yet or are still pending collection. |
| 142 bool read_attached_file_complete_; | 142 bool read_attached_file_complete_; |
| 143 bool syslogs_collection_complete_; | 143 bool syslogs_collection_complete_; |
| 144 #endif | 144 #endif |
| 145 bool feedback_page_data_complete_; | 145 bool feedback_page_data_complete_; |
| 146 | 146 |
| 147 DISALLOW_COPY_AND_ASSIGN(FeedbackData); | 147 DISALLOW_COPY_AND_ASSIGN(FeedbackData); |
| 148 }; | 148 }; |
| 149 | 149 |
| 150 #endif // CHROME_BROWSER_FEEDBACK_FEEDBACK_DATA_H_ | 150 #endif // CHROME_BROWSER_FEEDBACK_FEEDBACK_DATA_H_ |
| OLD | NEW |