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

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

Issue 264003003: test_runner: Move everything else into content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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/MockColorChooser.h
diff --git a/content/shell/renderer/test_runner/MockColorChooser.h b/content/shell/renderer/test_runner/MockColorChooser.h
index 5a71f92715853a07c5b1d9be440837f82391bdbe..a4a269a99e7c9112bd6c2e2f9540f84512d16d5a 100644
--- a/content/shell/renderer/test_runner/MockColorChooser.h
+++ b/content/shell/renderer/test_runner/MockColorChooser.h
@@ -11,17 +11,14 @@
#include "third_party/WebKit/public/web/WebColorChooser.h"
#include "third_party/WebKit/public/web/WebColorChooserClient.h"
-namespace WebTestRunner {
-class WebTestDelegate;
-}
-
namespace content {
+class WebTestDelegate;
class WebTestProxyBase;
class MockColorChooser : public blink::WebColorChooser {
public:
- MockColorChooser(blink::WebColorChooserClient*, WebTestRunner::WebTestDelegate*, content::WebTestProxyBase*);
+ MockColorChooser(blink::WebColorChooserClient*, WebTestDelegate*, WebTestProxyBase*);
virtual ~MockColorChooser();
// blink::WebColorChooser implementation.
@@ -29,13 +26,13 @@ public:
virtual void endChooser() OVERRIDE;
void invokeDidEndChooser();
- WebTestRunner::WebTaskList* taskList() { return &m_taskList; }
+ WebTaskList* taskList() { return &m_taskList; }
private:
blink::WebColorChooserClient* m_client;
- WebTestRunner::WebTestDelegate* m_delegate;
- content::WebTestProxyBase* m_proxy;
- WebTestRunner::WebTaskList m_taskList;
+ WebTestDelegate* m_delegate;
+ WebTestProxyBase* m_proxy;
+ WebTaskList m_taskList;
DISALLOW_COPY_AND_ASSIGN(MockColorChooser);
};
« no previous file with comments | « content/shell/renderer/shell_render_process_observer.cc ('k') | content/shell/renderer/test_runner/MockColorChooser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698