Chromium Code Reviews| Index: cc/resource_provider.h |
| diff --git a/cc/resource_provider.h b/cc/resource_provider.h |
| index e63093c654e850966c6e22e94f2e972e5b4a3867..c818132ff0039033e5d4cff2aeb946c58436f30c 100644 |
| --- a/cc/resource_provider.h |
| +++ b/cc/resource_provider.h |
| @@ -123,27 +123,27 @@ public: |
| // mailboxes and serializing meta-data into TransferableResources. |
| // Resources are not removed from the ResourceProvider, but are marked as |
| // "in use". |
| - void prepareSendToParent(const ResourceIdArray&, TransferableResourceList*); |
| + void prepareSendToParent(const ResourceIdArray&, TransferableResourceArray*); |
|
danakj
2013/02/26 16:01:28
nit: can you stick variable names in here re chrom
piman
2013/02/26 23:09:27
Done.
|
| // Prepares resources to be transfered back to the child, moving them to |
| // mailboxes and serializing meta-data into TransferableResources. |
| // Resources are removed from the ResourceProvider. Note: the resource IDs |
| // passed are in the parent namespace and will be translated to the child |
| // namespace when returned. |
| - void prepareSendToChild(int child, const ResourceIdArray&, TransferableResourceList*); |
| + void prepareSendToChild(int child, const ResourceIdArray&, TransferableResourceArray*); |
| // Receives resources from a child, moving them from mailboxes. Resource IDs |
| // passed are in the child namespace, and will be translated to the parent |
| // namespace, added to the child->parent map. |
| - // NOTE: if the syncPoint filed in TransferableResourceList is set, this |
| + // NOTE: if the syncPoint filed in TransferableResourceArray is set, this |
| // will wait on it. |
| - void receiveFromChild(int child, const TransferableResourceList&); |
| + void receiveFromChild(int child, const TransferableResourceArray&); |
| // Receives resources from the parent, moving them from mailboxes. Resource IDs |
| // passed are in the child namespace. |
| - // NOTE: if the syncPoint filed in TransferableResourceList is set, this |
| + // NOTE: if the syncPoint filed in TransferableResourceArray is set, this |
| // will wait on it. |
| - void receiveFromParent(const TransferableResourceList&); |
| + void receiveFromParent(const TransferableResourceArray&); |
| // Bind the given GL resource to a texture target for sampling using the |
| // specified filter for both minification and magnification. The resource |