| 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 917a7342270e1448636d8578a9822a172f52b100..883b42db9419a5516df988c781bff337c7196198 100644
|
| --- a/content/browser/web_contents/web_contents_impl.h
|
| +++ b/content/browser/web_contents/web_contents_impl.h
|
| @@ -349,7 +349,7 @@ class CONTENT_EXPORT WebContentsImpl
|
| void ViewFrameSource(const GURL& url, const PageState& page_state) override;
|
| int GetMinimumZoomPercent() const override;
|
| int GetMaximumZoomPercent() const override;
|
| - void ResetPageScale() override;
|
| + void SetPageScale(float page_scale_factor) override;
|
| gfx::Size GetPreferredSize() const override;
|
| bool GotResponseToLockMouseRequest(bool allowed) override;
|
| bool HasOpener() const override;
|
| @@ -830,6 +830,7 @@ class CONTENT_EXPORT WebContentsImpl
|
| void OnGoToEntryAtOffset(int offset);
|
| void OnUpdateZoomLimits(int minimum_percent,
|
| int maximum_percent);
|
| + void OnPageScaleFactorChanged(float page_scale_factor);
|
| void OnEnumerateDirectory(int request_id, const base::FilePath& path);
|
|
|
| void OnRegisterProtocolHandler(const std::string& protocol,
|
| @@ -1310,6 +1311,8 @@ class CONTENT_EXPORT WebContentsImpl
|
|
|
| PageImportanceSignals page_importance_signals_;
|
|
|
| + bool page_scale_factor_is_one_;
|
| +
|
| base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
|
|
|