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

Side by Side Diff: chrome/browser/feedback/feedback_data.h

Issue 22532012: Use scrubbed logs for sending with feedback reports. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 7 years, 4 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) 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
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_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/log_private/log_private_api_chromeos.cc ('k') | chrome/browser/feedback/feedback_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698