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

Unified Diff: content/shell/renderer/test_runner/MockWebMIDIAccessor.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/MockWebMIDIAccessor.h
diff --git a/content/shell/renderer/test_runner/MockWebMIDIAccessor.h b/content/shell/renderer/test_runner/MockWebMIDIAccessor.h
index 06fb206d19af371c88877cb71fa3543e1f83f3fc..302c5bfc1c43053f08854cd783d5a16a79af398a 100644
--- a/content/shell/renderer/test_runner/MockWebMIDIAccessor.h
+++ b/content/shell/renderer/test_runner/MockWebMIDIAccessor.h
@@ -14,15 +14,13 @@ namespace blink {
class WebMIDIAccessorClient;
}
-namespace WebTestRunner {
-class TestInterfaces;
-}
-
namespace content {
+class TestInterfaces;
+
class MockWebMIDIAccessor : public blink::WebMIDIAccessor {
public:
- explicit MockWebMIDIAccessor(blink::WebMIDIAccessorClient*, WebTestRunner::TestInterfaces*);
+ explicit MockWebMIDIAccessor(blink::WebMIDIAccessorClient*, TestInterfaces*);
virtual ~MockWebMIDIAccessor();
// blink::WebMIDIAccessor implementation.
@@ -33,12 +31,12 @@ public:
double timestamp) OVERRIDE {}
// WebTask related methods
- WebTestRunner::WebTaskList* taskList() { return &m_taskList; }
+ WebTaskList* taskList() { return &m_taskList; }
private:
blink::WebMIDIAccessorClient* m_client;
- WebTestRunner::WebTaskList m_taskList;
- WebTestRunner::TestInterfaces* m_interfaces;
+ WebTaskList m_taskList;
+ TestInterfaces* m_interfaces;
DISALLOW_COPY_AND_ASSIGN(MockWebMIDIAccessor);
};
« no previous file with comments | « content/shell/renderer/test_runner/MockSpellCheck.cpp ('k') | content/shell/renderer/test_runner/MockWebMIDIAccessor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698