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

Unified Diff: content/shell/renderer/test_runner/TestInterfaces.h

Issue 123243002: Replace WebNonCopyable with DISALLOW_COPY_AND_ASSIGN in test runner library (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 6 years, 12 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
Index: content/shell/renderer/test_runner/TestInterfaces.h
diff --git a/content/shell/renderer/test_runner/TestInterfaces.h b/content/shell/renderer/test_runner/TestInterfaces.h
index 1c5aa6c166c217ed6591e6d209b3953af2d4d2f2..a959ea47289f4d340be3ead9e1574e35cc194e28 100644
--- a/content/shell/renderer/test_runner/TestInterfaces.h
+++ b/content/shell/renderer/test_runner/TestInterfaces.h
@@ -7,6 +7,7 @@
#include <vector>
+#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "third_party/WebKit/public/platform/WebNonCopyable.h"
@@ -35,7 +36,7 @@ class TextInputController;
class WebTestDelegate;
class WebTestProxyBase;
-class TestInterfaces : public blink::WebNonCopyable {
+class TestInterfaces {
public:
TestInterfaces();
~TestInterfaces();
@@ -76,6 +77,8 @@ private:
#elif defined(__APPLE__)
scoped_ptr<WebTestThemeEngineMac> m_themeEngine;
#endif
+
+ DISALLOW_COPY_AND_ASSIGN(TestInterfaces);
};
}
« no previous file with comments | « content/shell/renderer/test_runner/SpellCheckClient.h ('k') | content/shell/renderer/test_runner/TestPlugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698