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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
500 | 500 |
501 // Testing functionality for TestRunner --------------------------------- | 501 // Testing functionality for TestRunner --------------------------------- |
502 | 502 |
503 protected: | 503 protected: |
504 ~WebView() {} | 504 ~WebView() {} |
505 }; | 505 }; |
506 | 506 |
507 } // namespace blink | 507 } // namespace blink |
508 | 508 |
509 #endif | 509 #endif |
OLD | NEW |