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

Unified Diff: public/web/WebWidgetClient.h

Issue 646403002: NOT FOR REVIEW: Alternative for supporting fullscreen for non-media in the WebView. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « Source/web/FullscreenController.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebWidgetClient.h
diff --git a/public/web/WebWidgetClient.h b/public/web/WebWidgetClient.h
index c71f005b6f6107c606aa6203cff7e1dc202dea6f..cc541c9f3f2c41d88e353c770ae32a60f1e9a807 100644
--- a/public/web/WebWidgetClient.h
+++ b/public/web/WebWidgetClient.h
@@ -116,8 +116,8 @@ public:
// WebWidget into fullscreen mode. Similarly, when exitFullScreen is
// called, WebWidget::{will,Did}ExitFullScreen should bound resizing the
// WebWidget out of fullscreen mode.
- virtual bool enterFullScreen() { return false; }
- virtual void exitFullScreen() { }
+ virtual bool enterFullScreen(bool isVideo) { return false; }
+ virtual void exitFullScreen(bool isVideo) { }
// Called to get/set the position of the widget in screen coordinates.
virtual WebRect windowRect() { return WebRect(); }
« no previous file with comments | « Source/web/FullscreenController.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698