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

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

Issue 419823002: test_runner: Migrate MockWebMIDIAccessor to Chromium C++ style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 5 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/BUILD.gn ('k') | content/shell/renderer/test_runner/MockWebMIDIAccessor.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
deleted file mode 100644
index 3fa0a31b114be24105671263e4cec1afd8151869..0000000000000000000000000000000000000000
--- a/content/shell/renderer/test_runner/MockWebMIDIAccessor.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CONTENT_SHELL_RENDERER_TEST_RUNNER_MOCKWEBMIDIACCESSOR_H_
-#define CONTENT_SHELL_RENDERER_TEST_RUNNER_MOCKWEBMIDIACCESSOR_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/WebMIDIAccessor.h"
-
-namespace blink {
-class WebMIDIAccessorClient;
-}
-
-namespace content {
-
-class TestInterfaces;
-
-class MockWebMIDIAccessor : public blink::WebMIDIAccessor {
-public:
- explicit MockWebMIDIAccessor(blink::WebMIDIAccessorClient*, TestInterfaces*);
- virtual ~MockWebMIDIAccessor();
-
- // blink::WebMIDIAccessor implementation.
- virtual void startSession() OVERRIDE;
- virtual void sendMIDIData(unsigned portIndex,
- const unsigned char* data,
- size_t length,
- double timestamp) OVERRIDE {}
-
- // WebTask related methods
- WebTaskList* mutable_task_list() { return &m_taskList; }
-
-private:
- blink::WebMIDIAccessorClient* m_client;
- WebTaskList m_taskList;
- TestInterfaces* m_interfaces;
-
- DISALLOW_COPY_AND_ASSIGN(MockWebMIDIAccessor);
-};
-
-} // namespace content
-
-#endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_MOCKWEBMIDIACCESSOR_H_
« no previous file with comments | « content/shell/BUILD.gn ('k') | content/shell/renderer/test_runner/MockWebMIDIAccessor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698