OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:imageorigin
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
WebDragClientWin.cpp
62
void WebDragClient::startDrag(DragImageRef image, const IntPoint&
imageOrigin
, const IntPoint& dragPoint, Clipboard* clipboard, Frame* frame, bool isLink)
86
m_page->send(Messages::WebPageProxy::StartDragDrop(
imageOrigin
, dragPoint, okEffect, dragData.dragDataMap(), IntSize(bitmapInfo.bmiHeader.biWidth, bitmapInfo.bmiHeader.biHeight), handle, isLink), m_page->pageID());
/external/webkit/Source/WebKit2/WebProcess/WebPage/ca/win/
LayerTreeHostCAWin.cpp
197
CGPoint
imageOrigin
;
199
RetainPtr<WKCACFImageRef> image(AdoptCF, WKCACFViewCopyDrawnImage(m_view.get(), &
imageOrigin
, &nextDrawTime));
208
updateInfo.updateRectBounds = IntRect(IntPoint(
imageOrigin
.x, m_webPage->size().height() -
imageOrigin
.y - bitmap->size().height()), bitmap->size());
/external/webkit/Source/WebKit/win/WebCoreSupport/
WebDragClient.cpp
111
void WebDragClient::startDrag(DragImageRef image, const IntPoint&
imageOrigin
, const IntPoint& dragPoint, Clipboard* clipboard, Frame* frame, bool isLink)
136
sdi.ptOffset.x = dragPoint.x() -
imageOrigin
.x();
137
sdi.ptOffset.y = dragPoint.y() -
imageOrigin
.y();
/external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.cpp
755
void WebPageProxy::startDragDrop(const IntPoint&
imageOrigin
, const IntPoint& dragPoint, uint64_t okEffect,
783
sdi.ptOffset.x = dragPoint.x() -
imageOrigin
.x();
784
sdi.ptOffset.y = dragPoint.y() -
imageOrigin
.y();
[
all
...]
Completed in 850 milliseconds