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

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

Issue 1997413003: Revert of Add support for entering/exiting HTML fullscreen from OOPIFs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 WebPageImportanceSignals* pageImportanceSignals() override; 271 WebPageImportanceSignals* pageImportanceSignals() override;
272 void transferActiveWheelFlingAnimation(const WebActiveWheelFlingParameters&) override; 272 void transferActiveWheelFlingAnimation(const WebActiveWheelFlingParameters&) override;
273 bool endActiveFlingAnimation() override; 273 bool endActiveFlingAnimation() override;
274 bool isFlinging() const override { return !!m_gestureAnimation.get(); } 274 bool isFlinging() const override { return !!m_gestureAnimation.get(); }
275 void setShowPaintRects(bool) override; 275 void setShowPaintRects(bool) override;
276 void setShowDebugBorders(bool); 276 void setShowDebugBorders(bool);
277 void setShowFPSCounter(bool) override; 277 void setShowFPSCounter(bool) override;
278 void setShowScrollBottleneckRects(bool) override; 278 void setShowScrollBottleneckRects(bool) override;
279 void acceptLanguagesChanged() override; 279 void acceptLanguagesChanged() override;
280 280
281 void willEnterFullScreen(WebRemoteFrame*) override;
282 void didUpdateFullScreenSize();
283
284 float defaultMinimumPageScaleFactor() const; 281 float defaultMinimumPageScaleFactor() const;
285 float defaultMaximumPageScaleFactor() const; 282 float defaultMaximumPageScaleFactor() const;
286 float minimumPageScaleFactor() const; 283 float minimumPageScaleFactor() const;
287 float maximumPageScaleFactor() const; 284 float maximumPageScaleFactor() const;
288 float clampPageScaleFactorToLimits(float) const; 285 float clampPageScaleFactorToLimits(float) const;
289 void resetScaleStateImmediately(); 286 void resetScaleStateImmediately();
290 287
291 HitTestResult coreHitTestResultAt(const WebPoint&); 288 HitTestResult coreHitTestResultAt(const WebPoint&);
292 void invalidateRect(const IntRect&); 289 void invalidateRect(const IntRect&);
293 290
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
758 double m_lastFrameTimeMonotonic; 755 double m_lastFrameTimeMonotonic;
759 }; 756 };
760 757
761 // We have no ways to check if the specified WebView is an instance of 758 // We have no ways to check if the specified WebView is an instance of
762 // WebViewImpl because WebViewImpl is the only implementation of WebView. 759 // WebViewImpl because WebViewImpl is the only implementation of WebView.
763 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 760 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
764 761
765 } // namespace blink 762 } // namespace blink
766 763
767 #endif 764 #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