diff options
Diffstat (limited to 'Source/WebKit/android/wds/DebugServer.h')
-rw-r--r-- | Source/WebKit/android/wds/DebugServer.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/WebKit/android/wds/DebugServer.h b/Source/WebKit/android/wds/DebugServer.h index 92edad9..3d7a539 100644 --- a/Source/WebKit/android/wds/DebugServer.h +++ b/Source/WebKit/android/wds/DebugServer.h @@ -29,6 +29,7 @@ // Turn on the wds feature in webkit #define ENABLE_WDS 0 +#include "wtf/Noncopyable.h" #include "wtf/Threading.h" #include "wtf/Vector.h" @@ -45,7 +46,8 @@ namespace android { // WebCore Debug Server namespace WDS { -class DebugServer : WTFNoncopyable::Noncopyable { +class DebugServer { + WTF_MAKE_NONCOPYABLE(DebugServer); public: void start(); void addFrame(Frame* frame) { |