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

Unified Diff: chrome/browser/browser_process.h

Issue 14329020: Implementing uploading of a WebRTC diagnostic log. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Code review, added url and app session id, rebase Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/browser_process.h
diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h
index 408be3aa8194a9ee745933ff731ce04b16cca74c..8e09bce06f98e0069ac9bc4345cea00d795f7d2e 100644
--- a/chrome/browser/browser_process.h
+++ b/chrome/browser/browser_process.h
@@ -80,6 +80,12 @@ namespace safe_browsing {
class ClientSideDetectionService;
}
+#if defined(ENABLE_WEBRTC)
+namespace components {
+class WebRtcLogUploader;
+}
+#endif
+
// NOT THREAD SAFE, call only from the main thread.
// These functions shouldn't return NULL unless otherwise noted.
class BrowserProcess {
@@ -214,6 +220,10 @@ class BrowserProcess {
virtual bool created_local_state() const = 0;
+#if defined(ENABLE_WEBRTC)
+ virtual components::WebRtcLogUploader* webrtc_log_uploader() = 0;
+#endif
+
private:
DISALLOW_COPY_AND_ASSIGN(BrowserProcess);
};

Powered by Google App Engine
This is Rietveld 408576698