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

Side by Side Diff: chrome/browser/media/webrtc/webrtc_log_uploader.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_MEDIA_WEBRTC_WEBRTC_LOG_UPLOADER_H_ 5 #ifndef CHROME_BROWSER_MEDIA_WEBRTC_WEBRTC_LOG_UPLOADER_H_
6 #define CHROME_BROWSER_MEDIA_WEBRTC_WEBRTC_LOG_UPLOADER_H_ 6 #define CHROME_BROWSER_MEDIA_WEBRTC_WEBRTC_LOG_UPLOADER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
11 #include <memory> 11 #include <memory>
12 #include <string> 12 #include <string>
13 #include <vector> 13 #include <vector>
14 14
15 #include "base/gtest_prod_util.h" 15 #include "base/gtest_prod_util.h"
16 #include "base/macros.h" 16 #include "base/macros.h"
17 #include "base/threading/thread_checker.h" 17 #include "base/threading/thread_checker.h"
18 #include "chrome/browser/media/webrtc/webrtc_logging_handler_host.h" 18 #include "chrome/browser/media/webrtc/webrtc_logging_handler_host.h"
19 #include "net/url_request/url_fetcher_delegate.h" 19 #include "net/url_request/url_fetcher_delegate.h"
20 20
21 class Profile;
22
23 namespace net { 21 namespace net {
24 class URLFetcher; 22 class URLFetcher;
25 } 23 }
26 24
27 typedef struct z_stream_s z_stream; 25 typedef struct z_stream_s z_stream;
28 26
29 // Used when uploading is done to perform post-upload actions. |log_path| is 27 // Used when uploading is done to perform post-upload actions. |log_path| is
30 // also used pre-upload. 28 // also used pre-upload.
31 struct WebRtcLogUploadDoneData : public WebRtcLogPaths { 29 struct WebRtcLogUploadDoneData : public WebRtcLogPaths {
32 WebRtcLogUploadDoneData(); 30 WebRtcLogUploadDoneData();
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 // Only accessed on the IO thread. 188 // Only accessed on the IO thread.
191 UploadDoneDataMap upload_done_data_; 189 UploadDoneDataMap upload_done_data_;
192 190
193 // When shutting down, don't create new URLFetchers. 191 // When shutting down, don't create new URLFetchers.
194 bool shutting_down_; 192 bool shutting_down_;
195 193
196 DISALLOW_COPY_AND_ASSIGN(WebRtcLogUploader); 194 DISALLOW_COPY_AND_ASSIGN(WebRtcLogUploader);
197 }; 195 };
198 196
199 #endif // CHROME_BROWSER_MEDIA_WEBRTC_WEBRTC_LOG_UPLOADER_H_ 197 #endif // CHROME_BROWSER_MEDIA_WEBRTC_WEBRTC_LOG_UPLOADER_H_
OLDNEW
« no previous file with comments | « chrome/browser/media/test_license_server_config.h ('k') | chrome/browser/media/wv_test_license_server_config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698