| 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);
|
| };
|
|
|
|
|