Index: chrome/browser/browser_process_impl.h |
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h |
index b1b85772749b663472b53ab25c560e4f597b7d0c..0b0ac02c09214271c2598c606aa862a789c39cfa 100644 |
--- a/chrome/browser/browser_process_impl.h |
+++ b/chrome/browser/browser_process_impl.h |
@@ -27,6 +27,7 @@ class CommandLine; |
class RemoteDebuggingServer; |
class PrefRegistrySimple; |
class PromoResourceService; |
+class WebRtcLogUploadManager; |
#if defined(ENABLE_PLUGIN_INSTALLATION) |
class PluginsResourceService; |
@@ -140,6 +141,7 @@ class BrowserProcessImpl : public BrowserProcess, |
#if defined(OS_WIN) && defined(USE_AURA) |
virtual void OnMetroViewerProcessTerminated() OVERRIDE; |
#endif |
+ virtual WebRtcLogUploadManager* webrtc_log_upload_manager() OVERRIDE; |
static void RegisterPrefs(PrefRegistrySimple* registry); |
@@ -313,6 +315,10 @@ class BrowserProcessImpl : public BrowserProcess, |
// the callstack which released the final module reference count. |
base::debug::StackTrace release_last_reference_callstack_; |
+#if defined(ENABLE_WEBRTC) |
+ scoped_ptr<WebRtcLogUploadManager> webrtc_log_upload_manager_; |
+#endif |
+ |
DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
}; |