OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009, 2010, 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2009, 2010, 2011, 2012 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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 const WebDragData&, | 389 const WebDragData&, |
390 const WebPoint& clientPoint, const WebPoint& screenPoint, | 390 const WebPoint& clientPoint, const WebPoint& screenPoint, |
391 WebDragOperationsMask operationsAllowed, | 391 WebDragOperationsMask operationsAllowed, |
392 int modifiers) = 0; | 392 int modifiers) = 0; |
393 virtual WebDragOperation dragTargetDragOver( | 393 virtual WebDragOperation dragTargetDragOver( |
394 const WebPoint& clientPoint, const WebPoint& screenPoint, | 394 const WebPoint& clientPoint, const WebPoint& screenPoint, |
395 WebDragOperationsMask operationsAllowed, | 395 WebDragOperationsMask operationsAllowed, |
396 int modifiers) = 0; | 396 int modifiers) = 0; |
397 virtual void dragTargetDragLeave() = 0; | 397 virtual void dragTargetDragLeave() = 0; |
398 virtual void dragTargetDrop( | 398 virtual void dragTargetDrop( |
| 399 const WebDragData&, |
399 const WebPoint& clientPoint, const WebPoint& screenPoint, | 400 const WebPoint& clientPoint, const WebPoint& screenPoint, |
400 int modifiers) = 0; | 401 int modifiers) = 0; |
401 | 402 |
402 // Retrieves a list of spelling markers. | 403 // Retrieves a list of spelling markers. |
403 virtual void spellingMarkers(WebVector<uint32_t>* markers) = 0; | 404 virtual void spellingMarkers(WebVector<uint32_t>* markers) = 0; |
404 virtual void removeSpellingMarkersUnderWords(const WebVector<WebString>& wor
ds) = 0; | 405 virtual void removeSpellingMarkersUnderWords(const WebVector<WebString>& wor
ds) = 0; |
405 | 406 |
406 // Support for resource loading initiated by plugins ------------------- | 407 // Support for resource loading initiated by plugins ------------------- |
407 | 408 |
408 // Returns next unused request identifier which is unique within the | 409 // Returns next unused request identifier which is unique within the |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
534 // completed. | 535 // completed. |
535 WebWidget* widget() { return this; } | 536 WebWidget* widget() { return this; } |
536 | 537 |
537 protected: | 538 protected: |
538 ~WebView() {} | 539 ~WebView() {} |
539 }; | 540 }; |
540 | 541 |
541 } // namespace blink | 542 } // namespace blink |
542 | 543 |
543 #endif | 544 #endif |
OLD | NEW |