| Index: content/browser/web_contents/web_contents_impl.h
|
| diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h
|
| index ebc8d0dac8572623fc7dc1c872b4b468c985f8ef..ead8b8ad42f9a1df4c7dd7fcc6c381fdb2b35db5 100644
|
| --- a/content/browser/web_contents/web_contents_impl.h
|
| +++ b/content/browser/web_contents/web_contents_impl.h
|
| @@ -11,6 +11,7 @@
|
|
|
| #include "base/compiler_specific.h"
|
| #include "base/containers/scoped_ptr_hash_map.h"
|
| +#include "base/debug/stack_trace.h"
|
| #include "base/gtest_prod_util.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/observer_list.h"
|
| @@ -373,6 +374,7 @@ class CONTENT_EXPORT WebContentsImpl
|
| void HasManifest(const HasManifestCallback& callback) override;
|
| void ExitFullscreen() override;
|
| void ResumeLoadingCreatedWebContents() override;
|
| + base::debug::StackTrace stack_trace() override;
|
| #if defined(OS_ANDROID)
|
| void OnMediaSessionStateChanged();
|
| void ResumeMediaSession() override;
|
| @@ -1339,6 +1341,9 @@ class CONTENT_EXPORT WebContentsImpl
|
|
|
| bool page_scale_factor_is_one_;
|
|
|
| + // Temporary to track down http://crbug.com/538612
|
| + base::debug::StackTrace stack_trace_;
|
| +
|
| base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
|
|
|