summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_process_impl.h
diff options
context:
space:
mode:
authorgrunell@chromium.org <grunell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-03 14:05:52 +0000
committergrunell@chromium.org <grunell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-03 14:05:52 +0000
commitbbf32c588f457307ef10d93dd7b611b821b1433a (patch)
treea4585e2bf9eab07d96bb9352eec9c6d8c9ea7029 /chrome/browser/browser_process_impl.h
parent3a27ba68d063d21ae08cf2f2a1462fa7ad353d1f (diff)
downloadchromium_src-bbf32c588f457307ef10d93dd7b611b821b1433a.zip
chromium_src-bbf32c588f457307ef10d93dd7b611b821b1433a.tar.gz
chromium_src-bbf32c588f457307ef10d93dd7b611b821b1433a.tar.bz2
Implementing uploading of a WebRTC diagnostic log.
BUG=229829 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=203700 R=agl@chromium.org, joi@chromium.org, sky@chromium.org, tommi@chromium.org, vabr@chromium.org, wtc@chromium.org Review URL: https://codereview.chromium.org/14329020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203711 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process_impl.h')
-rw-r--r--chrome/browser/browser_process_impl.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h
index e80b4fb..2514039 100644
--- a/chrome/browser/browser_process_impl.h
+++ b/chrome/browser/browser_process_impl.h
@@ -128,6 +128,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 WebRtcLogUploader* webrtc_log_uploader() OVERRIDE;
+#endif
static void RegisterPrefs(PrefRegistrySimple* registry);
@@ -293,6 +296,11 @@ class BrowserProcessImpl : public BrowserProcess,
// the callstack which released the final module reference count.
base::debug::StackTrace release_last_reference_callstack_;
+#if defined(ENABLE_WEBRTC)
+ // Lazily initialized.
+ scoped_ptr<WebRtcLogUploader> webrtc_log_uploader_;
+#endif
+
DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl);
};