| 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 virtual void setCompositorDeviceScaleFactorOverride(float) OVERRIDE; | 234 virtual void setCompositorDeviceScaleFactorOverride(float) OVERRIDE; |
| 235 virtual void setRootLayerTransform(const WebSize& offset, float scale) OVERR
IDE; | 235 virtual void setRootLayerTransform(const WebSize& offset, float scale) OVERR
IDE; |
| 236 virtual WebDevToolsAgent* devToolsAgent() OVERRIDE; | 236 virtual WebDevToolsAgent* devToolsAgent() OVERRIDE; |
| 237 virtual WebAXObject accessibilityObject() OVERRIDE; | 237 virtual WebAXObject accessibilityObject() OVERRIDE; |
| 238 virtual void setSelectionColors(unsigned activeBackgroundColor, | 238 virtual void setSelectionColors(unsigned activeBackgroundColor, |
| 239 unsigned activeForegroundColor, | 239 unsigned activeForegroundColor, |
| 240 unsigned inactiveBackgroundColor, | 240 unsigned inactiveBackgroundColor, |
| 241 unsigned inactiveForegroundColor) OVERRIDE; | 241 unsigned inactiveForegroundColor) OVERRIDE; |
| 242 virtual void performCustomContextMenuAction(unsigned action) OVERRIDE; | 242 virtual void performCustomContextMenuAction(unsigned action) OVERRIDE; |
| 243 virtual void showContextMenu() OVERRIDE; | 243 virtual void showContextMenu() OVERRIDE; |
| 244 virtual void getSmartClipData(WebRect, WebString&, WebRect&) OVERRIDE; | |
| 245 virtual void extractSmartClipData(WebRect, WebString&, WebString&, WebRect&)
OVERRIDE; | 244 virtual void extractSmartClipData(WebRect, WebString&, WebString&, WebRect&)
OVERRIDE; |
| 246 virtual void hidePopups() OVERRIDE; | 245 virtual void hidePopups() OVERRIDE; |
| 247 virtual void addPageOverlay(WebPageOverlay*, int /* zOrder */) OVERRIDE; | 246 virtual void addPageOverlay(WebPageOverlay*, int /* zOrder */) OVERRIDE; |
| 248 virtual void removePageOverlay(WebPageOverlay*) OVERRIDE; | 247 virtual void removePageOverlay(WebPageOverlay*) OVERRIDE; |
| 249 virtual void transferActiveWheelFlingAnimation(const WebActiveWheelFlingPara
meters&) OVERRIDE; | 248 virtual void transferActiveWheelFlingAnimation(const WebActiveWheelFlingPara
meters&) OVERRIDE; |
| 250 virtual bool endActiveFlingAnimation() OVERRIDE; | 249 virtual bool endActiveFlingAnimation() OVERRIDE; |
| 251 virtual void setShowPaintRects(bool) OVERRIDE; | 250 virtual void setShowPaintRects(bool) OVERRIDE; |
| 252 void setShowDebugBorders(bool); | 251 void setShowDebugBorders(bool); |
| 253 virtual void setShowFPSCounter(bool) OVERRIDE; | 252 virtual void setShowFPSCounter(bool) OVERRIDE; |
| 254 virtual void setContinuousPaintingEnabled(bool) OVERRIDE; | 253 virtual void setContinuousPaintingEnabled(bool) OVERRIDE; |
| (...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 716 bool m_userGestureObserved; | 715 bool m_userGestureObserved; |
| 717 }; | 716 }; |
| 718 | 717 |
| 719 // We have no ways to check if the specified WebView is an instance of | 718 // We have no ways to check if the specified WebView is an instance of |
| 720 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 719 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
| 721 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 720 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
| 722 | 721 |
| 723 } // namespace blink | 722 } // namespace blink |
| 724 | 723 |
| 725 #endif | 724 #endif |
| OLD | NEW |