| 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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 virtual WebDragOperation dragTargetDragOver( | 387 virtual WebDragOperation dragTargetDragOver( |
| 388 const WebPoint& clientPoint, const WebPoint& screenPoint, | 388 const WebPoint& clientPoint, const WebPoint& screenPoint, |
| 389 WebDragOperationsMask operationsAllowed, | 389 WebDragOperationsMask operationsAllowed, |
| 390 int modifiers) = 0; | 390 int modifiers) = 0; |
| 391 virtual void dragTargetDragLeave() = 0; | 391 virtual void dragTargetDragLeave() = 0; |
| 392 virtual void dragTargetDrop( | 392 virtual void dragTargetDrop( |
| 393 const WebDragData&, | 393 const WebDragData&, |
| 394 const WebPoint& clientPoint, const WebPoint& screenPoint, | 394 const WebPoint& clientPoint, const WebPoint& screenPoint, |
| 395 int modifiers) = 0; | 395 int modifiers) = 0; |
| 396 | 396 |
| 397 // Retrieves a list of spelling markers. | 397 // Removes spelling markers from words that have been added to user's custom
spellcheck dictionary. |
| 398 virtual void spellingMarkers(WebVector<uint32_t>* markers) = 0; | |
| 399 virtual void removeSpellingMarkersUnderWords(const WebVector<WebString>& wor
ds) = 0; | 398 virtual void removeSpellingMarkersUnderWords(const WebVector<WebString>& wor
ds) = 0; |
| 400 | 399 |
| 401 // Support for resource loading initiated by plugins ------------------- | 400 // Support for resource loading initiated by plugins ------------------- |
| 402 | 401 |
| 403 // Returns next unused request identifier which is unique within the | 402 // Returns next unused request identifier which is unique within the |
| 404 // parent Page. | 403 // parent Page. |
| 405 virtual unsigned long createUniqueIdentifierForRequest() = 0; | 404 virtual unsigned long createUniqueIdentifierForRequest() = 0; |
| 406 | 405 |
| 407 | 406 |
| 408 // Developer tools ----------------------------------------------------- | 407 // Developer tools ----------------------------------------------------- |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 // completed. | 528 // completed. |
| 530 WebWidget* widget() { return this; } | 529 WebWidget* widget() { return this; } |
| 531 | 530 |
| 532 protected: | 531 protected: |
| 533 ~WebView() {} | 532 ~WebView() {} |
| 534 }; | 533 }; |
| 535 | 534 |
| 536 } // namespace blink | 535 } // namespace blink |
| 537 | 536 |
| 538 #endif | 537 #endif |
| OLD | NEW |