Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1213)

Unified Diff: public/testing/WebFrameTestProxy.h

Issue 23440025: TestRunner library classes should be marked as NonCopyable. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/testing/runner/WebUserMediaClientMock.h ('k') | public/testing/WebTestProxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/testing/WebFrameTestProxy.h
diff --git a/public/testing/WebFrameTestProxy.h b/public/testing/WebFrameTestProxy.h
index 19a5da3aa107ca715fa8896cd1645a8ae43349e8..9a8ebb07b89d3c8a5cd89bc6f72a18833dec6cf2 100644
--- a/public/testing/WebFrameTestProxy.h
+++ b/public/testing/WebFrameTestProxy.h
@@ -32,13 +32,14 @@
#define WebFrameTestProxy_h
#include "WebTestProxy.h"
+#include "public/platform/WebNonCopyable.h"
namespace WebTestRunner {
// Templetized wrapper around RenderFrameImpl objects, which implement
// the WebFrameClient interface.
template<class Base, typename P, typename R>
-class WebFrameTestProxy : public Base {
+class WebFrameTestProxy : public Base, public WebKit::WebNonCopyable {
public:
WebFrameTestProxy(P p, R r)
: Base(p, r)
« no previous file with comments | « Source/testing/runner/WebUserMediaClientMock.h ('k') | public/testing/WebTestProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698