Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Side by Side Diff: third_party/WebKit/public/web/WebView.h

Issue 1723763002: Add WebDragData to blink::WebView::dragtargetDrop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 const WebDragData&, 339 const WebDragData&,
340 const WebPoint& clientPoint, const WebPoint& screenPoint, 340 const WebPoint& clientPoint, const WebPoint& screenPoint,
341 WebDragOperationsMask operationsAllowed, 341 WebDragOperationsMask operationsAllowed,
342 int modifiers) = 0; 342 int modifiers) = 0;
343 virtual WebDragOperation dragTargetDragOver( 343 virtual WebDragOperation dragTargetDragOver(
344 const WebPoint& clientPoint, const WebPoint& screenPoint, 344 const WebPoint& clientPoint, const WebPoint& screenPoint,
345 WebDragOperationsMask operationsAllowed, 345 WebDragOperationsMask operationsAllowed,
346 int modifiers) = 0; 346 int modifiers) = 0;
347 virtual void dragTargetDragLeave() = 0; 347 virtual void dragTargetDragLeave() = 0;
348 virtual void dragTargetDrop( 348 virtual void dragTargetDrop(
349 const WebDragData&,
349 const WebPoint& clientPoint, const WebPoint& screenPoint, 350 const WebPoint& clientPoint, const WebPoint& screenPoint,
350 int modifiers) = 0; 351 int modifiers) = 0;
351 352
352 // Retrieves a list of spelling markers. 353 // Retrieves a list of spelling markers.
353 virtual void spellingMarkers(WebVector<uint32_t>* markers) = 0; 354 virtual void spellingMarkers(WebVector<uint32_t>* markers) = 0;
354 virtual void removeSpellingMarkersUnderWords(const WebVector<WebString>& wor ds) = 0; 355 virtual void removeSpellingMarkersUnderWords(const WebVector<WebString>& wor ds) = 0;
355 356
356 // Support for resource loading initiated by plugins ------------------- 357 // Support for resource loading initiated by plugins -------------------
357 358
358 // Returns next unused request identifier which is unique within the 359 // Returns next unused request identifier which is unique within the
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 // context's ability to deal with that failure gracefully can be tested. 481 // context's ability to deal with that failure gracefully can be tested.
481 virtual void forceNextDrawingBufferCreationToFail() = 0; 482 virtual void forceNextDrawingBufferCreationToFail() = 0;
482 483
483 protected: 484 protected:
484 ~WebView() {} 485 ~WebView() {}
485 }; 486 };
486 487
487 } // namespace blink 488 } // namespace blink
488 489
489 #endif 490 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698