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

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: rebase 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)
352 = 0;
Avi (use Gerrit) 2016/04/12 02:51:51 Why the linebreak here?
hush (inactive) 2016/04/12 20:36:57 git cl format did it for me. Don't know why..
351 353
352 // Retrieves a list of spelling markers. 354 // Retrieves a list of spelling markers.
353 virtual void spellingMarkers(WebVector<uint32_t>* markers) = 0; 355 virtual void spellingMarkers(WebVector<uint32_t>* markers) = 0;
354 virtual void removeSpellingMarkersUnderWords(const WebVector<WebString>& wor ds) = 0; 356 virtual void removeSpellingMarkersUnderWords(const WebVector<WebString>& wor ds) = 0;
355 357
356 // Support for resource loading initiated by plugins ------------------- 358 // Support for resource loading initiated by plugins -------------------
357 359
358 // Returns next unused request identifier which is unique within the 360 // Returns next unused request identifier which is unique within the
359 // parent Page. 361 // parent Page.
360 virtual unsigned long createUniqueIdentifierForRequest() = 0; 362 virtual unsigned long createUniqueIdentifierForRequest() = 0;
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 // context's ability to deal with that failure gracefully can be tested. 482 // context's ability to deal with that failure gracefully can be tested.
481 virtual void forceNextDrawingBufferCreationToFail() = 0; 483 virtual void forceNextDrawingBufferCreationToFail() = 0;
482 484
483 protected: 485 protected:
484 ~WebView() {} 486 ~WebView() {}
485 }; 487 };
486 488
487 } // namespace blink 489 } // namespace blink
488 490
489 #endif 491 #endif
OLDNEW
« content/renderer/render_view_impl.cc ('K') | « third_party/WebKit/Source/web/WebViewImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698