Searched refs:tileID (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DTiledDrawingArea.cpp137 void TiledDrawingArea::updateTile(int tileID, const IntRect& dirtyRect, float scale) argument
145 WebProcess::shared().connection()->deprecatedSend(DrawingAreaProxyLegacyMessage::TileUpdated, m_webPage->pageID(), CoreIPC::In(tileID, updateChunk, scale, pendingUpdateCount));
156 updateTile(update.tileID, update.dirtyRect, update.scale);
182 int tileID; local
183 if (!arguments->decode(CoreIPC::Out(tileID)))
185 UpdateMap::iterator it = m_pendingUpdates.find(tileID);
197 if (!arguments->decode(CoreIPC::Out(update.tileID, update.dirtyRect, update.scale)))
199 UpdateMap::iterator it = m_pendingUpdates.find(update.tileID);
203 m_pendingUpdates.add(update.tileID, update);
H A DTiledDrawingArea.h67 void updateTile(int tileID, const WebCore::IntRect& dirtyRect, float scale);
80 int tileID; member in struct:WebKit::TiledDrawingArea::TileUpdate
/external/webkit/Source/WebKit2/UIProcess/
H A DTiledDrawingAreaProxy.cpp128 int tileID; local
132 if (!arguments->decode(CoreIPC::Out(tileID, updateChunk, scale, pendingUpdateCount)))
135 TiledDrawingAreaTile* tile = m_tilesByID.get(tileID);
136 ASSERT(!tile || tile->ID() == tileID);
174 void TiledDrawingAreaProxy::requestTileUpdate(int tileID, const IntRect& dirtyRect) argument
176 page()->process()->connection()->deprecatedSend(DrawingAreaLegacyMessage::RequestTileUpdate, page()->pageID(), CoreIPC::In(tileID, dirtyRect, contentsScale()));
182 int tileID; local
190 if (!arguments->decode(CoreIPC::Out(tileID, updateChunk, scale, pendingUpdateCount)))
192 TiledDrawingAreaTile* tile = m_tilesByID.get(tileID);
193 ASSERT(!tile || tile->ID() == tileID);
[all...]
H A DTiledDrawingAreaProxy.h124 void requestTileUpdate(int tileID, const WebCore::IntRect& dirtyRect);

Completed in 100 milliseconds