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

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: Removed file added by mistake. 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 7010aa3ecf956bee9d1a34f66d1679d6e348b3d6..f7b8d7bb897f7138b065b84eea3c7fa79e014623 100644
--- a/chrome/browser/browser_process_impl.h
+++ b/chrome/browser/browser_process_impl.h
@@ -36,6 +36,10 @@ namespace base {
class SequencedTaskRunner;
}
+namespace components {
+class WebRtcLogUploader;
+}
+
namespace policy {
class BrowserPolicyConnector;
class PolicyService;
@@ -138,6 +142,7 @@ class BrowserProcessImpl : public BrowserProcess,
#if defined(OS_WIN) && defined(USE_AURA)
virtual void OnMetroViewerProcessTerminated() OVERRIDE;
#endif
+ virtual components::WebRtcLogUploader* webrtc_log_uploader() OVERRIDE;
static void RegisterPrefs(PrefRegistrySimple* registry);
@@ -311,6 +316,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