| Index: cc/trees/threaded_channel.cc
|
| diff --git a/cc/trees/threaded_channel.cc b/cc/trees/threaded_channel.cc
|
| index 3d2eb33aeea4c201910de76db2c7f3ede10cd035..34a5c9d0a3b0876ee695c45784cd564defbc1330 100644
|
| --- a/cc/trees/threaded_channel.cc
|
| +++ b/cc/trees/threaded_channel.cc
|
| @@ -11,6 +11,12 @@
|
|
|
| namespace cc {
|
|
|
| +scoped_ptr<ThreadedChannel> ThreadedChannel::Create(
|
| + ProxyMain* proxy_main,
|
| + TaskRunnerProvider* task_runner_provider) {
|
| + return make_scoped_ptr(new ThreadedChannel(proxy_main, task_runner_provider));
|
| +}
|
| +
|
| ThreadedChannel::ThreadedChannel(ProxyMain* proxy_main,
|
| TaskRunnerProvider* task_runner_provider)
|
| : task_runner_provider_(task_runner_provider),
|
| @@ -272,10 +278,6 @@ void ThreadedChannel::BeginMainFrame(
|
| base::Passed(&begin_main_frame_state)));
|
| }
|
|
|
| -ProxyImpl* ThreadedChannel::GetProxyImplForTesting() const {
|
| - return impl().proxy_impl.get();
|
| -}
|
| -
|
| scoped_ptr<ProxyImpl> ThreadedChannel::CreateProxyImpl(
|
| ChannelImpl* channel_impl,
|
| LayerTreeHost* layer_tree_host,
|
| @@ -362,10 +364,4 @@ ThreadedChannel::CompositorThreadOnly::CompositorThreadOnly(
|
|
|
| ThreadedChannel::CompositorThreadOnly::~CompositorThreadOnly() {}
|
|
|
| -scoped_ptr<ThreadedChannel> ThreadedChannel::Create(
|
| - ProxyMain* proxy_main,
|
| - TaskRunnerProvider* task_runner_provider) {
|
| - return make_scoped_ptr(new ThreadedChannel(proxy_main, task_runner_provider));
|
| -}
|
| -
|
| } // namespace cc
|
|
|