| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 const WebPoint& screenPoint, | 240 const WebPoint& screenPoint, |
| 241 WebDragOperationsMask operationsAllowed, | 241 WebDragOperationsMask operationsAllowed, |
| 242 int modifiers) override; | 242 int modifiers) override; |
| 243 WebDragOperation dragTargetDragOver( | 243 WebDragOperation dragTargetDragOver( |
| 244 const WebPoint& clientPoint, | 244 const WebPoint& clientPoint, |
| 245 const WebPoint& screenPoint, | 245 const WebPoint& screenPoint, |
| 246 WebDragOperationsMask operationsAllowed, | 246 WebDragOperationsMask operationsAllowed, |
| 247 int modifiers) override; | 247 int modifiers) override; |
| 248 void dragTargetDragLeave() override; | 248 void dragTargetDragLeave() override; |
| 249 void dragTargetDrop( | 249 void dragTargetDrop( |
| 250 const WebDragData&, |
| 250 const WebPoint& clientPoint, | 251 const WebPoint& clientPoint, |
| 251 const WebPoint& screenPoint, | 252 const WebPoint& screenPoint, |
| 252 int modifiers) override; | 253 int modifiers) override; |
| 253 void spellingMarkers(WebVector<uint32_t>* markers) override; | 254 void spellingMarkers(WebVector<uint32_t>* markers) override; |
| 254 void removeSpellingMarkersUnderWords(const WebVector<WebString>& words) over
ride; | 255 void removeSpellingMarkersUnderWords(const WebVector<WebString>& words) over
ride; |
| 255 unsigned long createUniqueIdentifierForRequest() override; | 256 unsigned long createUniqueIdentifierForRequest() override; |
| 256 void enableDeviceEmulation(const WebDeviceEmulationParams&) override; | 257 void enableDeviceEmulation(const WebDeviceEmulationParams&) override; |
| 257 void disableDeviceEmulation() override; | 258 void disableDeviceEmulation() override; |
| 258 WebAXObject accessibilityObject() override; | 259 WebAXObject accessibilityObject() override; |
| 259 void setSelectionColors(unsigned activeBackgroundColor, | 260 void setSelectionColors(unsigned activeBackgroundColor, |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 771 }; | 772 }; |
| 772 | 773 |
| 773 DEFINE_TYPE_CASTS(WebViewImpl, WebWidget, widget, widget->isWebView(), widget.is
WebView()); | 774 DEFINE_TYPE_CASTS(WebViewImpl, WebWidget, widget, widget->isWebView(), widget.is
WebView()); |
| 774 // We have no ways to check if the specified WebView is an instance of | 775 // We have no ways to check if the specified WebView is an instance of |
| 775 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 776 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
| 776 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 777 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
| 777 | 778 |
| 778 } // namespace blink | 779 } // namespace blink |
| 779 | 780 |
| 780 #endif | 781 #endif |
| OLD | NEW |