| Index: chrome/browser/browser_process_impl.h
|
| diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h
|
| index e80b4fbe826ce757bf30357e2f07fe27166fe9b8..25140397f2fd85c2f97258c0ebad3fc43ad6bf82 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);
|
| };
|
|
|
|
|