| Index: content/browser/compositor/surface_utils.cc
|
| diff --git a/content/browser/compositor/surface_utils.cc b/content/browser/compositor/surface_utils.cc
|
| index 7ae05912a656db51831f62a90dd1adf149700f08..1049ba2484a8244afe9ae5b1d6e6930ac664afb0 100644
|
| --- a/content/browser/compositor/surface_utils.cc
|
| +++ b/content/browser/compositor/surface_utils.cc
|
| @@ -7,7 +7,7 @@
|
| #include "build/build_config.h"
|
| #include "cc/surfaces/surface_id_allocator.h"
|
|
|
| -#if defined(OS_ANDROID) && !defined(USE_AURA)
|
| +#if defined(OS_ANDROID)
|
| #include "content/browser/renderer_host/compositor_impl_android.h"
|
| #else
|
| #include "content/browser/compositor/image_transport_factory.h"
|
| @@ -17,7 +17,7 @@
|
| namespace content {
|
|
|
| scoped_ptr<cc::SurfaceIdAllocator> CreateSurfaceIdAllocator() {
|
| -#if defined(OS_ANDROID) && !defined(USE_AURA)
|
| +#if defined(OS_ANDROID)
|
| return CompositorImpl::CreateSurfaceIdAllocator();
|
| #else
|
| ImageTransportFactory* factory = ImageTransportFactory::GetInstance();
|
| @@ -26,7 +26,7 @@ scoped_ptr<cc::SurfaceIdAllocator> CreateSurfaceIdAllocator() {
|
| }
|
|
|
| cc::SurfaceManager* GetSurfaceManager() {
|
| -#if defined(OS_ANDROID) && !defined(USE_AURA)
|
| +#if defined(OS_ANDROID)
|
| return CompositorImpl::GetSurfaceManager();
|
| #else
|
| ImageTransportFactory* factory = ImageTransportFactory::GetInstance();
|
|
|