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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 const WebPoint& clientPoint, const WebPoint& screenPoint, | 348 const WebPoint& clientPoint, const WebPoint& screenPoint, |
349 WebDragOperationsMask operationsAllowed, | 349 WebDragOperationsMask operationsAllowed, |
350 int keyModifiers) = 0; | 350 int keyModifiers) = 0; |
351 virtual void dragTargetDragLeave() = 0; | 351 virtual void dragTargetDragLeave() = 0; |
352 virtual void dragTargetDrop( | 352 virtual void dragTargetDrop( |
353 const WebPoint& clientPoint, const WebPoint& screenPoint, | 353 const WebPoint& clientPoint, const WebPoint& screenPoint, |
354 int keyModifiers) = 0; | 354 int keyModifiers) = 0; |
355 | 355 |
356 // Retrieves a list of spelling markers. | 356 // Retrieves a list of spelling markers. |
357 virtual void spellingMarkers(WebVector<uint32_t>* markers) = 0; | 357 virtual void spellingMarkers(WebVector<uint32_t>* markers) = 0; |
358 | 358 virtual void removeSpellingMarkersUnderWords(const WebVector<WebString>& wor
ds) = 0; |
359 | 359 |
360 // Support for resource loading initiated by plugins ------------------- | 360 // Support for resource loading initiated by plugins ------------------- |
361 | 361 |
362 // Returns next unused request identifier which is unique within the | 362 // Returns next unused request identifier which is unique within the |
363 // parent Page. | 363 // parent Page. |
364 virtual unsigned long createUniqueIdentifierForRequest() = 0; | 364 virtual unsigned long createUniqueIdentifierForRequest() = 0; |
365 | 365 |
366 | 366 |
367 // Developer tools ----------------------------------------------------- | 367 // Developer tools ----------------------------------------------------- |
368 | 368 |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
496 | 496 |
497 // Testing functionality for TestRunner --------------------------------- | 497 // Testing functionality for TestRunner --------------------------------- |
498 | 498 |
499 protected: | 499 protected: |
500 ~WebView() {} | 500 ~WebView() {} |
501 }; | 501 }; |
502 | 502 |
503 } // namespace blink | 503 } // namespace blink |
504 | 504 |
505 #endif | 505 #endif |
OLD | NEW |