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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 const WebDragData&, | 347 const WebDragData&, |
348 const WebPoint& clientPoint, const WebPoint& screenPoint, | 348 const WebPoint& clientPoint, const WebPoint& screenPoint, |
349 WebDragOperationsMask operationsAllowed, | 349 WebDragOperationsMask operationsAllowed, |
350 int modifiers) = 0; | 350 int modifiers) = 0; |
351 virtual WebDragOperation dragTargetDragOver( | 351 virtual WebDragOperation dragTargetDragOver( |
352 const WebPoint& clientPoint, const WebPoint& screenPoint, | 352 const WebPoint& clientPoint, const WebPoint& screenPoint, |
353 WebDragOperationsMask operationsAllowed, | 353 WebDragOperationsMask operationsAllowed, |
354 int modifiers) = 0; | 354 int modifiers) = 0; |
355 virtual void dragTargetDragLeave() = 0; | 355 virtual void dragTargetDragLeave() = 0; |
356 virtual void dragTargetDrop( | 356 virtual void dragTargetDrop( |
| 357 const WebDragData&, |
357 const WebPoint& clientPoint, const WebPoint& screenPoint, | 358 const WebPoint& clientPoint, const WebPoint& screenPoint, |
358 int modifiers) = 0; | 359 int modifiers) = 0; |
359 | 360 |
360 // Retrieves a list of spelling markers. | 361 // Retrieves a list of spelling markers. |
361 virtual void spellingMarkers(WebVector<uint32_t>* markers) = 0; | 362 virtual void spellingMarkers(WebVector<uint32_t>* markers) = 0; |
362 virtual void removeSpellingMarkersUnderWords(const WebVector<WebString>& wor
ds) = 0; | 363 virtual void removeSpellingMarkersUnderWords(const WebVector<WebString>& wor
ds) = 0; |
363 | 364 |
364 // Support for resource loading initiated by plugins ------------------- | 365 // Support for resource loading initiated by plugins ------------------- |
365 | 366 |
366 // Returns next unused request identifier which is unique within the | 367 // Returns next unused request identifier which is unique within the |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
488 // context's ability to deal with that failure gracefully can be tested. | 489 // context's ability to deal with that failure gracefully can be tested. |
489 virtual void forceNextDrawingBufferCreationToFail() = 0; | 490 virtual void forceNextDrawingBufferCreationToFail() = 0; |
490 | 491 |
491 protected: | 492 protected: |
492 ~WebView() {} | 493 ~WebView() {} |
493 }; | 494 }; |
494 | 495 |
495 } // namespace blink | 496 } // namespace blink |
496 | 497 |
497 #endif | 498 #endif |
OLD | NEW |