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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 virtual void performMediaPlayerAction( | 219 virtual void performMediaPlayerAction( |
220 const WebMediaPlayerAction& action, | 220 const WebMediaPlayerAction& action, |
221 const WebPoint& location) override; | 221 const WebPoint& location) override; |
222 virtual void performPluginAction( | 222 virtual void performPluginAction( |
223 const WebPluginAction&, | 223 const WebPluginAction&, |
224 const WebPoint&) override; | 224 const WebPoint&) override; |
225 virtual WebHitTestResult hitTestResultAt(const WebPoint&) override; | 225 virtual WebHitTestResult hitTestResultAt(const WebPoint&) override; |
226 virtual WebHitTestResult hitTestResultForTap(const WebPoint&, const WebSize&
) override; | 226 virtual WebHitTestResult hitTestResultForTap(const WebPoint&, const WebSize&
) override; |
227 virtual void copyImageAt(const WebPoint&) override; | 227 virtual void copyImageAt(const WebPoint&) override; |
228 virtual void saveImageAt(const WebPoint&) override; | 228 virtual void saveImageAt(const WebPoint&) override; |
| 229 virtual void reloadImageAt(const WebNode&, bool bypassCache) override; |
229 virtual void dragSourceEndedAt( | 230 virtual void dragSourceEndedAt( |
230 const WebPoint& clientPoint, | 231 const WebPoint& clientPoint, |
231 const WebPoint& screenPoint, | 232 const WebPoint& screenPoint, |
232 WebDragOperation) override; | 233 WebDragOperation) override; |
233 virtual void dragSourceSystemDragEnded() override; | 234 virtual void dragSourceSystemDragEnded() override; |
234 virtual WebDragOperation dragTargetDragEnter( | 235 virtual WebDragOperation dragTargetDragEnter( |
235 const WebDragData&, | 236 const WebDragData&, |
236 const WebPoint& clientPoint, | 237 const WebPoint& clientPoint, |
237 const WebPoint& screenPoint, | 238 const WebPoint& screenPoint, |
238 WebDragOperationsMask operationsAllowed, | 239 WebDragOperationsMask operationsAllowed, |
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
765 }; | 766 }; |
766 | 767 |
767 DEFINE_TYPE_CASTS(WebViewImpl, WebWidget, widget, widget->isWebView(), widget.is
WebView()); | 768 DEFINE_TYPE_CASTS(WebViewImpl, WebWidget, widget, widget->isWebView(), widget.is
WebView()); |
768 // We have no ways to check if the specified WebView is an instance of | 769 // We have no ways to check if the specified WebView is an instance of |
769 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 770 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
770 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 771 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
771 | 772 |
772 } // namespace blink | 773 } // namespace blink |
773 | 774 |
774 #endif | 775 #endif |
OLD | NEW |