| Index: cc/resource_update_controller.h
|
| diff --git a/cc/resource_update_controller.h b/cc/resource_update_controller.h
|
| index fbec7c40c3264bd8b10e0f7fc2d01422e867501c..bd3e2b865cb1242291ca9c3ce9ab8472498206f1 100644
|
| --- a/cc/resource_update_controller.h
|
| +++ b/cc/resource_update_controller.h
|
| @@ -27,9 +27,9 @@ protected:
|
|
|
| class CC_EXPORT ResourceUpdateController {
|
| public:
|
| - static scoped_ptr<ResourceUpdateController> create(ResourceUpdateControllerClient* client, Thread* thread, scoped_ptr<ResourceUpdateQueue> queue, ResourceProvider* resourceProvider)
|
| + static scoped_ptr<ResourceUpdateController> create(ResourceUpdateControllerClient* client, Thread* thread, scoped_ptr<ResourceUpdateQueue> queue, ResourceProvider* resourceProvider, bool hasImplThread)
|
| {
|
| - return make_scoped_ptr(new ResourceUpdateController(client, thread, queue.Pass(), resourceProvider));
|
| + return make_scoped_ptr(new ResourceUpdateController(client, thread, queue.Pass(), resourceProvider, hasImplThread));
|
| }
|
| static size_t maxPartialTextureUpdates();
|
|
|
| @@ -48,7 +48,7 @@ public:
|
| virtual size_t updateMoreTexturesSize() const;
|
|
|
| protected:
|
| - ResourceUpdateController(ResourceUpdateControllerClient*, Thread*, scoped_ptr<ResourceUpdateQueue>, ResourceProvider*);
|
| + ResourceUpdateController(ResourceUpdateControllerClient*, Thread*, scoped_ptr<ResourceUpdateQueue>, ResourceProvider*, bool hasImplThread);
|
|
|
| private:
|
| static size_t maxFullUpdatesPerTick(ResourceProvider*);
|
| @@ -64,6 +64,7 @@ private:
|
| void onTimerFired();
|
|
|
| ResourceUpdateControllerClient* m_client;
|
| + bool m_hasImplThread;
|
| scoped_ptr<ResourceUpdateQueue> m_queue;
|
| bool m_contentsTexturesPurged;
|
| ResourceProvider* m_resourceProvider;
|
|
|