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

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: Code review, added url and app session id, rebase Created 7 years, 7 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 0479e31edb99d8165b0a673197faf171d7e13c57..e864bd4a1fc81822945ae18a2d0a54a553d6be95 100644
--- a/chrome/browser/browser_process_impl.h
+++ b/chrome/browser/browser_process_impl.h
@@ -129,6 +129,9 @@ class BrowserProcessImpl : public BrowserProcess,
virtual chrome::MediaFileSystemRegistry*
media_file_system_registry() OVERRIDE;
virtual bool created_local_state() const OVERRIDE;
+#if defined(ENABLE_WEBRTC)
+ virtual components::WebRtcLogUploader* webrtc_log_uploader() OVERRIDE;
+#endif
static void RegisterPrefs(PrefRegistrySimple* registry);
@@ -294,6 +297,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<components::WebRtcLogUploader> webrtc_log_uploader_;
+#endif
+
DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl);
};

Powered by Google App Engine
This is Rietveld 408576698