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

Side by Side Diff: content/shell/renderer/test_runner/WebTestInterfaces.cpp

Issue 185263006: Move TestRunner from CppVariable to gin::Wrappable (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Bug fix: text_runner -> test_runner in gypi :-( Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/shell/renderer/test_runner/WebTestInterfaces.h" 5 #include "content/shell/renderer/test_runner/WebTestInterfaces.h"
6 6
7 #include "content/shell/renderer/test_runner/MockWebAudioDevice.h" 7 #include "content/shell/renderer/test_runner/MockWebAudioDevice.h"
8 #include "content/shell/renderer/test_runner/MockWebMIDIAccessor.h" 8 #include "content/shell/renderer/test_runner/MockWebMIDIAccessor.h"
9 #include "content/shell/renderer/test_runner/MockWebMediaStreamCenter.h" 9 #include "content/shell/renderer/test_runner/MockWebMediaStreamCenter.h"
10 #include "content/shell/renderer/test_runner/MockWebRTCPeerConnectionHandler.h" 10 #include "content/shell/renderer/test_runner/MockWebRTCPeerConnectionHandler.h"
11 #include "content/shell/renderer/test_runner/TestInterfaces.h" 11 #include "content/shell/renderer/test_runner/TestInterfaces.h"
12 #include "content/shell/renderer/test_runner/TestRunner.h" 12 #include "content/shell/renderer/test_runner/test_runner.h"
13 13
14 using namespace blink; 14 using namespace blink;
15 15
16 namespace WebTestRunner { 16 namespace WebTestRunner {
17 17
18 WebTestInterfaces::WebTestInterfaces() 18 WebTestInterfaces::WebTestInterfaces()
19 : m_interfaces(new TestInterfaces()) 19 : m_interfaces(new TestInterfaces())
20 { 20 {
21 } 21 }
22 22
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 { 83 {
84 return new MockWebMIDIAccessor(client, m_interfaces.get()); 84 return new MockWebMIDIAccessor(client, m_interfaces.get());
85 } 85 }
86 86
87 WebAudioDevice* WebTestInterfaces::createAudioDevice(double sampleRate) 87 WebAudioDevice* WebTestInterfaces::createAudioDevice(double sampleRate)
88 { 88 {
89 return new MockWebAudioDevice(sampleRate); 89 return new MockWebAudioDevice(sampleRate);
90 } 90 }
91 91
92 } 92 }
OLDNEW
« no previous file with comments | « content/shell/renderer/test_runner/TestRunner.cpp ('k') | content/shell/renderer/test_runner/WebTestProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698