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