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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 virtual void hidePopups() override; | 261 virtual void hidePopups() override; |
262 virtual void addPageOverlay(WebPageOverlay*, int /* zOrder */) override; | 262 virtual void addPageOverlay(WebPageOverlay*, int /* zOrder */) override; |
263 virtual void removePageOverlay(WebPageOverlay*) override; | 263 virtual void removePageOverlay(WebPageOverlay*) override; |
264 virtual void transferActiveWheelFlingAnimation(const WebActiveWheelFlingPara
meters&) override; | 264 virtual void transferActiveWheelFlingAnimation(const WebActiveWheelFlingPara
meters&) override; |
265 virtual bool endActiveFlingAnimation() override; | 265 virtual bool endActiveFlingAnimation() override; |
266 virtual void setShowPaintRects(bool) override; | 266 virtual void setShowPaintRects(bool) override; |
267 void setShowDebugBorders(bool); | 267 void setShowDebugBorders(bool); |
268 virtual void setShowFPSCounter(bool) override; | 268 virtual void setShowFPSCounter(bool) override; |
269 virtual void setContinuousPaintingEnabled(bool) override; | 269 virtual void setContinuousPaintingEnabled(bool) override; |
270 virtual void setShowScrollBottleneckRects(bool) override; | 270 virtual void setShowScrollBottleneckRects(bool) override; |
271 virtual void getSelectionRootBounds(WebRect& bounds) const override; | |
272 virtual void acceptLanguagesChanged() override; | 271 virtual void acceptLanguagesChanged() override; |
273 | 272 |
274 // WebViewImpl | 273 // WebViewImpl |
275 | 274 |
276 HitTestResult coreHitTestResultAt(const WebPoint&); | 275 HitTestResult coreHitTestResultAt(const WebPoint&); |
277 void suppressInvalidations(bool enable); | 276 void suppressInvalidations(bool enable); |
278 void invalidateRect(const IntRect&); | 277 void invalidateRect(const IntRect&); |
279 | 278 |
280 void setIgnoreInputEvents(bool newValue); | 279 void setIgnoreInputEvents(bool newValue); |
281 void setBackgroundColorOverride(WebColor); | 280 void setBackgroundColorOverride(WebColor); |
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
752 float m_topControlsLayoutHeight; | 751 float m_topControlsLayoutHeight; |
753 }; | 752 }; |
754 | 753 |
755 // We have no ways to check if the specified WebView is an instance of | 754 // We have no ways to check if the specified WebView is an instance of |
756 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 755 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
757 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 756 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
758 | 757 |
759 } // namespace blink | 758 } // namespace blink |
760 | 759 |
761 #endif | 760 #endif |
OLD | NEW |