| Index: cc/CCLayerTreeHostImpl.cpp
|
| diff --git a/cc/CCLayerTreeHostImpl.cpp b/cc/CCLayerTreeHostImpl.cpp
|
| index 4c725dd1540f312162b5b17862ba5f5f92b26f6d..8abbd1ad49fdcc8883d6add2b7d8f8cf9531dc65 100644
|
| --- a/cc/CCLayerTreeHostImpl.cpp
|
| +++ b/cc/CCLayerTreeHostImpl.cpp
|
| @@ -34,7 +34,7 @@ using WebKit::WebTransformationMatrix;
|
|
|
| namespace {
|
|
|
| -void didVisibilityChange(WebCore::CCLayerTreeHostImpl* id, bool visible)
|
| +void didVisibilityChange(cc::CCLayerTreeHostImpl* id, bool visible)
|
| {
|
| if (visible) {
|
| TRACE_EVENT_ASYNC_BEGIN1("webkit", "CCLayerTreeHostImpl::setVisible", id, "CCLayerTreeHostImpl", id);
|
| @@ -46,7 +46,7 @@ void didVisibilityChange(WebCore::CCLayerTreeHostImpl* id, bool visible)
|
|
|
| } // namespace
|
|
|
| -namespace WebCore {
|
| +namespace cc {
|
|
|
| class CCLayerTreeHostImplTimeSourceAdapter : public CCTimeSourceClient {
|
| WTF_MAKE_NONCOPYABLE(CCLayerTreeHostImplTimeSourceAdapter);
|
| @@ -1269,4 +1269,4 @@ void CCLayerTreeHostImpl::animateScrollbarsRecursive(CCLayerImpl* layer, double
|
| animateScrollbarsRecursive(layer->children()[i].get(), monotonicTime);
|
| }
|
|
|
| -} // namespace WebCore
|
| +} // namespace cc
|
|
|