| Index: cc/thread_proxy.h
|
| ===================================================================
|
| --- cc/thread_proxy.h (revision 165906)
|
| +++ cc/thread_proxy.h (working copy)
|
| @@ -5,7 +5,6 @@
|
| #ifndef CC_THREAD_PROXY_H_
|
| #define CC_THREAD_PROXY_H_
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/time.h"
|
| #include "cc/animation_events.h"
|
| #include "cc/completion_event.h"
|
| @@ -25,7 +24,7 @@
|
|
|
| class ThreadProxy : public Proxy, LayerTreeHostImplClient, SchedulerClient, ResourceUpdateControllerClient {
|
| public:
|
| - static scoped_ptr<Proxy> create(LayerTreeHost*, scoped_ptr<Thread> implThread);
|
| + static scoped_ptr<Proxy> create(LayerTreeHost*);
|
|
|
| virtual ~ThreadProxy();
|
|
|
| @@ -78,7 +77,7 @@
|
| virtual void readyToFinalizeTextureUpdates() OVERRIDE;
|
|
|
| private:
|
| - ThreadProxy(LayerTreeHost*, scoped_ptr<Thread> implThread);
|
| + explicit ThreadProxy(LayerTreeHost*);
|
|
|
| // Set on impl thread, read on main thread.
|
| struct BeginFrameAndCommitState {
|
|
|