OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |