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

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: review Created 4 years, 6 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
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebViewTest.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 const WebDragData&, 389 const WebDragData&,
390 const WebPoint& clientPoint, const WebPoint& screenPoint, 390 const WebPoint& clientPoint, const WebPoint& screenPoint,
391 WebDragOperationsMask operationsAllowed, 391 WebDragOperationsMask operationsAllowed,
392 int modifiers) = 0; 392 int modifiers) = 0;
393 virtual WebDragOperation dragTargetDragOver( 393 virtual WebDragOperation dragTargetDragOver(
394 const WebPoint& clientPoint, const WebPoint& screenPoint, 394 const WebPoint& clientPoint, const WebPoint& screenPoint,
395 WebDragOperationsMask operationsAllowed, 395 WebDragOperationsMask operationsAllowed,
396 int modifiers) = 0; 396 int modifiers) = 0;
397 virtual void dragTargetDragLeave() = 0; 397 virtual void dragTargetDragLeave() = 0;
398 virtual void dragTargetDrop( 398 virtual void dragTargetDrop(
399 const WebDragData&,
399 const WebPoint& clientPoint, const WebPoint& screenPoint, 400 const WebPoint& clientPoint, const WebPoint& screenPoint,
400 int modifiers) = 0; 401 int modifiers) = 0;
401 402
402 // Retrieves a list of spelling markers. 403 // Retrieves a list of spelling markers.
403 virtual void spellingMarkers(WebVector<uint32_t>* markers) = 0; 404 virtual void spellingMarkers(WebVector<uint32_t>* markers) = 0;
404 virtual void removeSpellingMarkersUnderWords(const WebVector<WebString>& wor ds) = 0; 405 virtual void removeSpellingMarkersUnderWords(const WebVector<WebString>& wor ds) = 0;
405 406
406 // Support for resource loading initiated by plugins ------------------- 407 // Support for resource loading initiated by plugins -------------------
407 408
408 // Returns next unused request identifier which is unique within the 409 // Returns next unused request identifier which is unique within the
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
534 // completed. 535 // completed.
535 WebWidget* widget() { return this; } 536 WebWidget* widget() { return this; }
536 537
537 protected: 538 protected:
538 ~WebView() {} 539 ~WebView() {}
539 }; 540 };
540 541
541 } // namespace blink 542 } // namespace blink
542 543
543 #endif 544 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebViewTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698