| Index: webkit/compositor_bindings/WebCompositorImpl.cpp
|
| diff --git a/webkit/compositor_bindings/WebCompositorImpl.cpp b/webkit/compositor_bindings/WebCompositorImpl.cpp
|
| index 530fa9bf613b6e26e9d6b33f22080c8a4db4bef3..8fd9f45925e615ca2c6fa73f4c03ec7e7e69e8f8 100644
|
| --- a/webkit/compositor_bindings/WebCompositorImpl.cpp
|
| +++ b/webkit/compositor_bindings/WebCompositorImpl.cpp
|
| @@ -26,9 +26,9 @@ void WebCompositor::initialize(WebThread* implThread)
|
| WebCompositorImpl::initialize(implThread);
|
| }
|
|
|
| -bool WebCompositor::threadingEnabled()
|
| +bool WebCompositor::isThreadingEnabled()
|
| {
|
| - return WebCompositorImpl::threadingEnabled();
|
| + return WebCompositorImpl::isThreadingEnabled();
|
| }
|
|
|
| void WebCompositor::shutdown()
|
| @@ -69,7 +69,7 @@ void WebCompositorImpl::initialize(WebThread* implThread)
|
| CCProxy::setImplThread(0);
|
| }
|
|
|
| -bool WebCompositorImpl::threadingEnabled()
|
| +bool WebCompositorImpl::isThreadingEnabled()
|
| {
|
| return s_implThread;
|
| }
|
|
|