Index: chrome/browser/browser_process_impl.h |
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h |
index 1401864e4de788588df33e1b376f264af4f08151..6a47fdf898c3ca0c73c71503568c50a51f0278a4 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; |
@@ -139,6 +140,7 @@ class BrowserProcessImpl : public BrowserProcess, |
virtual void PlatformSpecificCommandLineProcessing( |
const CommandLine& command_line) OVERRIDE; |
virtual bool created_local_state() const OVERRIDE; |
+ virtual WebRtcLogUploadManager* webrtc_log_upload_manager() OVERRIDE; |
static void RegisterPrefs(PrefRegistrySimple* registry); |
@@ -316,6 +318,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); |
}; |