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