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

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: Fixed pre-submit warnings/errors (including adding bzip2 to content/browser DEPS). 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 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);
};

Powered by Google App Engine
This is Rietveld 408576698