| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 virtual void willEnterFullScreen(); | 131 virtual void willEnterFullScreen(); |
| 132 virtual void didEnterFullScreen(); | 132 virtual void didEnterFullScreen(); |
| 133 virtual void willExitFullScreen(); | 133 virtual void willExitFullScreen(); |
| 134 virtual void didExitFullScreen(); | 134 virtual void didExitFullScreen(); |
| 135 virtual void animate(double); | 135 virtual void animate(double); |
| 136 virtual void layout(); | 136 virtual void layout(); |
| 137 virtual void enterForceCompositingMode(bool enable) OVERRIDE; | 137 virtual void enterForceCompositingMode(bool enable) OVERRIDE; |
| 138 virtual void paint(WebCanvas*, const WebRect&, PaintOptions = ReadbackFromCo
mpositorIfAvailable); | 138 virtual void paint(WebCanvas*, const WebRect&, PaintOptions = ReadbackFromCo
mpositorIfAvailable); |
| 139 virtual bool isTrackingRepaints() const OVERRIDE; | 139 virtual bool isTrackingRepaints() const OVERRIDE; |
| 140 virtual void themeChanged(); | 140 virtual void themeChanged(); |
| 141 virtual void setNeedsRedraw(); | |
| 142 virtual bool handleInputEvent(const WebInputEvent&); | 141 virtual bool handleInputEvent(const WebInputEvent&); |
| 143 virtual void setCursorVisibilityState(bool isVisible); | 142 virtual void setCursorVisibilityState(bool isVisible); |
| 144 virtual bool hasTouchEventHandlersAt(const WebPoint&); | 143 virtual bool hasTouchEventHandlersAt(const WebPoint&); |
| 145 virtual void applyScrollAndScale(const WebSize&, float); | 144 virtual void applyScrollAndScale(const WebSize&, float); |
| 146 virtual void mouseCaptureLost(); | 145 virtual void mouseCaptureLost(); |
| 147 virtual void setFocus(bool enable); | 146 virtual void setFocus(bool enable); |
| 148 virtual bool setComposition( | 147 virtual bool setComposition( |
| 149 const WebString& text, | 148 const WebString& text, |
| 150 const WebVector<WebCompositionUnderline>& underlines, | 149 const WebVector<WebCompositionUnderline>& underlines, |
| 151 int selectionStart, | 150 int selectionStart, |
| (...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 828 inline WebViewImpl* toWebViewImpl(WebView* webView) | 827 inline WebViewImpl* toWebViewImpl(WebView* webView) |
| 829 { | 828 { |
| 830 // We have no ways to check if the specified WebView is an instance of | 829 // We have no ways to check if the specified WebView is an instance of |
| 831 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 830 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
| 832 return static_cast<WebViewImpl*>(webView); | 831 return static_cast<WebViewImpl*>(webView); |
| 833 } | 832 } |
| 834 | 833 |
| 835 } // namespace blink | 834 } // namespace blink |
| 836 | 835 |
| 837 #endif | 836 #endif |
| OLD | NEW |