OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:didupdatebackingstorestate
(Results
1 - 5
of
5
) sorted by null
/external/webkit/Source/WebKit2/UIProcess/
DrawingAreaProxyImpl.cpp
83
// Wait for a
DidUpdateBackingStoreState
message that contains the new bits before we paint
88
// Dispatching
DidUpdateBackingStoreState
(either beneath sendUpdateBackingStoreState or
176
void DrawingAreaProxyImpl::
didUpdateBackingStoreState
(uint64_t backingStoreStateID, const UpdateInfo& updateInfo, const LayerTreeContext& layerTreeContext)
285
// Wait for the
DidUpdateBackingStoreState
message. Normally we don this in DrawingAreaProxyImpl::paint, but that
302
// FIXME: waitForAndDispatchImmediately will always return the oldest
DidUpdateBackingStoreState
message that
303
// hasn't yet been processed. But it might be better to skip ahead to some other
DidUpdateBackingStoreState
304
// message, if multiple
DidUpdateBackingStoreState
messages are waiting to be processed. For instance, we could
307
// The timeout, in seconds, we use when waiting for a
DidUpdateBackingStoreState
message when we're asked to paint.
309
m_webPageProxy->process()->connection()->waitForAndDispatchImmediately<Messages::DrawingAreaProxy::
DidUpdateBackingStoreState
>(m_webPageProxy->pageID(), didUpdateBackingStoreStateTimeout);
DrawingAreaProxy.messages.in
26
DidUpdateBackingStoreState
(uint64_t backingStoreStateID, WebKit::UpdateInfo updateInfo, WebKit::LayerTreeContext context)
DrawingAreaProxyImpl.h
61
virtual void
didUpdateBackingStoreState
(uint64_t backingStoreStateID, const UpdateInfo&, const LayerTreeContext&);
98
// Whether we've sent a UpdateBackingStoreState message and are now waiting for a
DidUpdateBackingStoreState
message.
DrawingAreaProxy.h
108
virtual void
didUpdateBackingStoreState
(uint64_t backingStoreStateID, const UpdateInfo&, const LayerTreeContext&) { }
/external/webkit/Source/WebKit2/WebProcess/WebPage/
DrawingAreaImpl.cpp
289
// We've already sent a
DidUpdateBackingStoreState
message for this state. We have nothing more to do.
332
// will be sent back in the
DidUpdateBackingStoreState
message.
338
m_webPage->send(Messages::DrawingAreaProxy::
DidUpdateBackingStoreState
(m_backingStoreStateID, updateInfo, layerTreeContext));
Completed in 505 milliseconds