Index: webkit/glue/webdevtoolsagent_impl.h |
=================================================================== |
--- webkit/glue/webdevtoolsagent_impl.h (revision 30177) |
+++ webkit/glue/webdevtoolsagent_impl.h (working copy) |
@@ -7,6 +7,7 @@ |
#include <string> |
+#include <wtf/Noncopyable.h> |
#include <wtf/OwnPtr.h> |
#include "v8.h" |
@@ -36,7 +37,8 @@ |
class WebDevToolsAgentImpl : public WebKit::WebDevToolsAgent, |
public ToolsAgent, |
- public DevToolsRpc::Delegate { |
+ public DevToolsRpc::Delegate, |
+ public Noncopyable { |
public: |
WebDevToolsAgentImpl(WebViewImpl* web_view_impl, |
WebKit::WebDevToolsAgentClient* client); |
@@ -119,7 +121,6 @@ |
v8::Persistent<v8::Context> utility_context_; |
OwnPtr<BoundObject> devtools_agent_host_; |
OwnPtr<WebCore::ScriptState> inspector_frontend_script_state_; |
- DISALLOW_COPY_AND_ASSIGN(WebDevToolsAgentImpl); |
}; |
#endif // WEBKIT_GLUE_WEBDEVTOOLSAGENT_IMPL_H_ |