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

Unified Diff: third_party/WebKit/public/web/WebView.h

Issue 1804023002: Fix page zoom to be frame-centric for out-of-process frames. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't use WeakPtr for PostTask on UI thread. Created 4 years, 9 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: third_party/WebKit/public/web/WebView.h
diff --git a/third_party/WebKit/public/web/WebView.h b/third_party/WebKit/public/web/WebView.h
index a04be6d1b3447e5faa34fec1a95e41773138919e..f76810dc14bc17578e4db0988c9d9effbb75e40a 100644
--- a/third_party/WebKit/public/web/WebView.h
+++ b/third_party/WebKit/public/web/WebView.h
@@ -205,6 +205,8 @@ public:
// change.
virtual double setZoomLevel(double) = 0;
+ virtual double setZoomLevelForFrame(WebLocalFrame*, double zoomLevel) = 0;
alexmos 2016/04/05 18:00:54 nit: comment
wjmaclean 2016/04/05 20:22:00 Done.
+
// Updates the zoom limits for this view.
virtual void zoomLimitsChanged(double minimumZoomLevel,
double maximumZoomLevel) = 0;

Powered by Google App Engine
This is Rietveld 408576698