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); |
}; |