| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 const WebSize& maxSize) override; | 222 const WebSize& maxSize) override; |
| 223 void disableAutoResizeMode() override; | 223 void disableAutoResizeMode() override; |
| 224 void performMediaPlayerAction( | 224 void performMediaPlayerAction( |
| 225 const WebMediaPlayerAction& action, | 225 const WebMediaPlayerAction& action, |
| 226 const WebPoint& location) override; | 226 const WebPoint& location) override; |
| 227 void performPluginAction( | 227 void performPluginAction( |
| 228 const WebPluginAction&, | 228 const WebPluginAction&, |
| 229 const WebPoint&) override; | 229 const WebPoint&) override; |
| 230 WebHitTestResult hitTestResultAt(const WebPoint&) override; | 230 WebHitTestResult hitTestResultAt(const WebPoint&) override; |
| 231 WebHitTestResult hitTestResultForTap(const WebPoint&, const WebSize&) overri
de; | 231 WebHitTestResult hitTestResultForTap(const WebPoint&, const WebSize&) overri
de; |
| 232 void copyImageAt(const WebPoint&) override; | |
| 233 void saveImageAt(const WebPoint&) override; | |
| 234 void dragSourceEndedAt( | 232 void dragSourceEndedAt( |
| 235 const WebPoint& clientPoint, | 233 const WebPoint& clientPoint, |
| 236 const WebPoint& screenPoint, | 234 const WebPoint& screenPoint, |
| 237 WebDragOperation) override; | 235 WebDragOperation) override; |
| 238 void dragSourceSystemDragEnded() override; | 236 void dragSourceSystemDragEnded() override; |
| 239 WebDragOperation dragTargetDragEnter( | 237 WebDragOperation dragTargetDragEnter( |
| 240 const WebDragData&, | 238 const WebDragData&, |
| 241 const WebPoint& clientPoint, | 239 const WebPoint& clientPoint, |
| 242 const WebPoint& screenPoint, | 240 const WebPoint& screenPoint, |
| 243 WebDragOperationsMask operationsAllowed, | 241 WebDragOperationsMask operationsAllowed, |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 755 double m_lastFrameTimeMonotonic; | 753 double m_lastFrameTimeMonotonic; |
| 756 }; | 754 }; |
| 757 | 755 |
| 758 // We have no ways to check if the specified WebView is an instance of | 756 // We have no ways to check if the specified WebView is an instance of |
| 759 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 757 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
| 760 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 758 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
| 761 | 759 |
| 762 } // namespace blink | 760 } // namespace blink |
| 763 | 761 |
| 764 #endif | 762 #endif |
| OLD | NEW |