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

Unified Diff: content/shell/renderer/test_runner/MockWebSpeechInputController.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/MockWebSpeechInputController.h
diff --git a/content/shell/renderer/test_runner/MockWebSpeechInputController.h b/content/shell/renderer/test_runner/MockWebSpeechInputController.h
index af493cea263c8677c2438ddf7286b23b206510c5..5f22e72c6eb44476d75735f53c5468413d1911dc 100644
--- a/content/shell/renderer/test_runner/MockWebSpeechInputController.h
+++ b/content/shell/renderer/test_runner/MockWebSpeechInputController.h
@@ -9,9 +9,9 @@
#include <string>
#include <vector>
+#include "base/basictypes.h"
#include "content/shell/renderer/test_runner/TestCommon.h"
#include "content/shell/renderer/test_runner/WebTask.h"
-#include "third_party/WebKit/public/platform/WebNonCopyable.h"
#include "third_party/WebKit/public/platform/WebRect.h"
#include "third_party/WebKit/public/web/WebSpeechInputController.h"
#include "third_party/WebKit/public/web/WebSpeechInputResult.h"
@@ -26,7 +26,7 @@ namespace WebTestRunner {
class WebTestDelegate;
-class MockWebSpeechInputController : public blink::WebSpeechInputController, public blink::WebNonCopyable {
+class MockWebSpeechInputController : public blink::WebSpeechInputController {
public:
explicit MockWebSpeechInputController(blink::WebSpeechInputListener*);
~MockWebSpeechInputController();
@@ -70,6 +70,8 @@ private:
bool m_dumpRect;
WebTestDelegate* m_delegate;
+
+ DISALLOW_COPY_AND_ASSIGN(MockWebSpeechInputController);
};
}

Powered by Google App Engine
This is Rietveld 408576698