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

Unified Diff: content/shell/renderer/test_runner/SpellCheckClient.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/SpellCheckClient.h
diff --git a/content/shell/renderer/test_runner/SpellCheckClient.h b/content/shell/renderer/test_runner/SpellCheckClient.h
index bc8ad9d4d1dc30f4ec0243d51be3654de6d26cdb..474dbcf3495c617a30fd59f20060ccef765793ab 100644
--- a/content/shell/renderer/test_runner/SpellCheckClient.h
+++ b/content/shell/renderer/test_runner/SpellCheckClient.h
@@ -5,9 +5,9 @@
#ifndef SpellCheckClient_h
#define SpellCheckClient_h
+#include "base/basictypes.h"
#include "content/shell/renderer/test_runner/MockSpellCheck.h"
#include "content/shell/renderer/test_runner/WebTask.h"
-#include "third_party/WebKit/public/platform/WebNonCopyable.h"
#include "third_party/WebKit/public/web/WebSpellCheckClient.h"
namespace WebTestRunner {
@@ -15,7 +15,7 @@ namespace WebTestRunner {
class WebTestDelegate;
class WebTestProxyBase;
-class SpellCheckClient : public blink::WebSpellCheckClient, public blink::WebNonCopyable {
+class SpellCheckClient : public blink::WebSpellCheckClient {
public:
explicit SpellCheckClient(WebTestProxyBase*);
virtual ~SpellCheckClient();
@@ -48,6 +48,8 @@ private:
WebTestDelegate* m_delegate;
WebTestProxyBase* m_webTestProxy;
+
+ DISALLOW_COPY_AND_ASSIGN(SpellCheckClient);
};
}
« no previous file with comments | « content/shell/renderer/test_runner/NotificationPresenter.h ('k') | content/shell/renderer/test_runner/TestInterfaces.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698