| Index: cc/test/WebCompositorInitializer.h
|
| diff --git a/cc/test/WebCompositorInitializer.h b/cc/test/WebCompositorInitializer.h
|
| index d4ec82989ad0df748b996b9d363aaf431f399ee7..f6203b117bc4a848c194ec0df07b7a4006bd8fe5 100644
|
| --- a/cc/test/WebCompositorInitializer.h
|
| +++ b/cc/test/WebCompositorInitializer.h
|
| @@ -5,9 +5,9 @@
|
| #ifndef WebCompositorInitializer_h
|
| #define WebCompositorInitializer_h
|
|
|
| +#include "base/basictypes.h"
|
| #include <public/Platform.h>
|
| #include <public/WebCompositorSupport.h>
|
| -#include <wtf/Noncopyable.h>
|
|
|
| namespace WebKit {
|
| class WebThread;
|
| @@ -16,7 +16,6 @@ class WebThread;
|
| namespace WebKitTests {
|
|
|
| class WebCompositorInitializer {
|
| - WTF_MAKE_NONCOPYABLE(WebCompositorInitializer);
|
| public:
|
| explicit WebCompositorInitializer(WebKit::WebThread* thread)
|
| {
|
| @@ -27,6 +26,9 @@ public:
|
| {
|
| WebKit::Platform::current()->compositorSupport()->shutdown();
|
| }
|
| +
|
| +private:
|
| + DISALLOW_COPY_AND_ASSIGN(WebCompositorInitializer);
|
| };
|
|
|
| }
|
|
|