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

Unified Diff: content/shell/renderer/test_runner/WebPermissions.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/WebPermissions.h
diff --git a/content/shell/renderer/test_runner/WebPermissions.h b/content/shell/renderer/test_runner/WebPermissions.h
index f9294cd73ea749fb003cd18a04b1da0aa2e39c26..6b4652f0d494d395c39ac4e5505ac2a48944e67a 100644
--- a/content/shell/renderer/test_runner/WebPermissions.h
+++ b/content/shell/renderer/test_runner/WebPermissions.h
@@ -5,14 +5,14 @@
#ifndef WebPermissions_h
#define WebPermissions_h
-#include "third_party/WebKit/public/platform/WebNonCopyable.h"
+#include "base/basictypes.h"
#include "third_party/WebKit/public/web/WebPermissionClient.h"
namespace WebTestRunner {
class WebTestDelegate;
-class WebPermissions : public blink::WebPermissionClient, public blink::WebNonCopyable {
+class WebPermissions : public blink::WebPermissionClient {
public:
WebPermissions();
virtual ~WebPermissions();
@@ -49,6 +49,8 @@ private:
bool m_pluginsAllowed;
bool m_displayingInsecureContentAllowed;
bool m_runningInsecureContentAllowed;
+
+ DISALLOW_COPY_AND_ASSIGN(WebPermissions);
};
}
« no previous file with comments | « content/shell/renderer/test_runner/WebFrameTestProxy.h ('k') | content/shell/renderer/test_runner/WebTestProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698