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

Unified Diff: content/shell/renderer/test_runner/WebUserMediaClientMock.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
« no previous file with comments | « content/shell/renderer/test_runner/WebTestThemeEngineWin.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/renderer/test_runner/WebUserMediaClientMock.h
diff --git a/content/shell/renderer/test_runner/WebUserMediaClientMock.h b/content/shell/renderer/test_runner/WebUserMediaClientMock.h
index 37a4bd9d603bf762547d03a241a304179360c51e..6dc29e52ede2936ec3053a59e17ec44118a77b49 100644
--- a/content/shell/renderer/test_runner/WebUserMediaClientMock.h
+++ b/content/shell/renderer/test_runner/WebUserMediaClientMock.h
@@ -5,10 +5,10 @@
#ifndef WebUserMediaClientMock_h
#define WebUserMediaClientMock_h
+#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/WebCommon.h"
-#include "third_party/WebKit/public/platform/WebNonCopyable.h"
#include "third_party/WebKit/public/platform/WebString.h"
#include "third_party/WebKit/public/platform/WebURL.h"
#include "third_party/WebKit/public/web/WebUserMediaClient.h"
@@ -17,7 +17,7 @@ namespace WebTestRunner {
class WebTestDelegate;
-class WebUserMediaClientMock : public blink::WebUserMediaClient, public blink::WebNonCopyable {
+class WebUserMediaClientMock : public blink::WebUserMediaClient {
public:
explicit WebUserMediaClientMock(WebTestDelegate*);
~WebUserMediaClientMock() { }
@@ -31,6 +31,8 @@ public:
private:
WebTaskList m_taskList;
WebTestDelegate* m_delegate;
+
+ DISALLOW_COPY_AND_ASSIGN(WebUserMediaClientMock);
};
}
« no previous file with comments | « content/shell/renderer/test_runner/WebTestThemeEngineWin.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698