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

Side by Side Diff: third_party/WebKit/Source/web/WebViewImpl.h

Issue 2008873004: Reland: Add support for entering/exiting HTML fullscreen from OOPIFs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix tests on Mac Created 4 years, 6 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 WebPageImportanceSignals* pageImportanceSignals() override; 272 WebPageImportanceSignals* pageImportanceSignals() override;
273 void transferActiveWheelFlingAnimation(const WebActiveWheelFlingParameters&) override; 273 void transferActiveWheelFlingAnimation(const WebActiveWheelFlingParameters&) override;
274 bool endActiveFlingAnimation() override; 274 bool endActiveFlingAnimation() override;
275 bool isFlinging() const override { return !!m_gestureAnimation.get(); } 275 bool isFlinging() const override { return !!m_gestureAnimation.get(); }
276 void setShowPaintRects(bool) override; 276 void setShowPaintRects(bool) override;
277 void setShowDebugBorders(bool); 277 void setShowDebugBorders(bool);
278 void setShowFPSCounter(bool) override; 278 void setShowFPSCounter(bool) override;
279 void setShowScrollBottleneckRects(bool) override; 279 void setShowScrollBottleneckRects(bool) override;
280 void acceptLanguagesChanged() override; 280 void acceptLanguagesChanged() override;
281 281
282 void willEnterFullScreen(WebRemoteFrame*) override;
283 void didUpdateFullScreenSize();
284
282 float defaultMinimumPageScaleFactor() const; 285 float defaultMinimumPageScaleFactor() const;
283 float defaultMaximumPageScaleFactor() const; 286 float defaultMaximumPageScaleFactor() const;
284 float minimumPageScaleFactor() const; 287 float minimumPageScaleFactor() const;
285 float maximumPageScaleFactor() const; 288 float maximumPageScaleFactor() const;
286 float clampPageScaleFactorToLimits(float) const; 289 float clampPageScaleFactorToLimits(float) const;
287 void resetScaleStateImmediately(); 290 void resetScaleStateImmediately();
288 291
289 HitTestResult coreHitTestResultAt(const WebPoint&); 292 HitTestResult coreHitTestResultAt(const WebPoint&);
290 void invalidateRect(const IntRect&); 293 void invalidateRect(const IntRect&);
291 294
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
756 double m_lastFrameTimeMonotonic; 759 double m_lastFrameTimeMonotonic;
757 }; 760 };
758 761
759 // We have no ways to check if the specified WebView is an instance of 762 // We have no ways to check if the specified WebView is an instance of
760 // WebViewImpl because WebViewImpl is the only implementation of WebView. 763 // WebViewImpl because WebViewImpl is the only implementation of WebView.
761 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 764 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
762 765
763 } // namespace blink 766 } // namespace blink
764 767
765 #endif 768 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698