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

Unified Diff: chrome/browser/browser_process_impl.h

Issue 14329020: Implementing uploading of a WebRTC diagnostic log. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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_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);
};

Powered by Google App Engine
This is Rietveld 408576698