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

Side by Side Diff: Source/testing/runner/MockWebMediaStreamCenter.h

Issue 23440025: TestRunner library classes should be marked as NonCopyable. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 15 matching lines...) Expand all
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef MockWebMediaStreamCenter_h 31 #ifndef MockWebMediaStreamCenter_h
32 #define MockWebMediaStreamCenter_h 32 #define MockWebMediaStreamCenter_h
33 33
34 #include "TestCommon.h" 34 #include "TestCommon.h"
35 #include "public/platform/WebMediaStreamCenter.h" 35 #include "public/platform/WebMediaStreamCenter.h"
36 #include "public/platform/WebNonCopyable.h"
36 37
37 namespace WebKit { 38 namespace WebKit {
38 class WebMediaStreamCenterClient; 39 class WebMediaStreamCenterClient;
39 }; 40 };
40 41
41 namespace WebTestRunner { 42 namespace WebTestRunner {
42 43
43 class MockWebMediaStreamCenter : public WebKit::WebMediaStreamCenter { 44 class MockWebMediaStreamCenter : public WebKit::WebMediaStreamCenter, public Web Kit::WebNonCopyable {
44 public: 45 public:
45 explicit MockWebMediaStreamCenter(WebKit::WebMediaStreamCenterClient*); 46 explicit MockWebMediaStreamCenter(WebKit::WebMediaStreamCenterClient*);
46 47
47 virtual bool getMediaStreamTrackSources(const WebKit::WebMediaStreamTrackSou rcesRequest&) OVERRIDE; 48 virtual bool getMediaStreamTrackSources(const WebKit::WebMediaStreamTrackSou rcesRequest&) OVERRIDE;
48 virtual void didEnableMediaStreamTrack(const WebKit::WebMediaStream&, const WebKit::WebMediaStreamTrack&) OVERRIDE; 49 virtual void didEnableMediaStreamTrack(const WebKit::WebMediaStream&, const WebKit::WebMediaStreamTrack&) OVERRIDE;
49 virtual void didDisableMediaStreamTrack(const WebKit::WebMediaStream&, const WebKit::WebMediaStreamTrack&) OVERRIDE; 50 virtual void didDisableMediaStreamTrack(const WebKit::WebMediaStream&, const WebKit::WebMediaStreamTrack&) OVERRIDE;
50 virtual bool didAddMediaStreamTrack(const WebKit::WebMediaStream&, const Web Kit::WebMediaStreamTrack&) OVERRIDE; 51 virtual bool didAddMediaStreamTrack(const WebKit::WebMediaStream&, const Web Kit::WebMediaStreamTrack&) OVERRIDE;
51 virtual bool didRemoveMediaStreamTrack(const WebKit::WebMediaStream&, const WebKit::WebMediaStreamTrack&) OVERRIDE; 52 virtual bool didRemoveMediaStreamTrack(const WebKit::WebMediaStream&, const WebKit::WebMediaStreamTrack&) OVERRIDE;
52 virtual void didStopLocalMediaStream(const WebKit::WebMediaStream&) OVERRIDE ; 53 virtual void didStopLocalMediaStream(const WebKit::WebMediaStream&) OVERRIDE ;
53 virtual void didCreateMediaStream(WebKit::WebMediaStream&) OVERRIDE; 54 virtual void didCreateMediaStream(WebKit::WebMediaStream&) OVERRIDE;
54 55
55 private: 56 private:
56 MockWebMediaStreamCenter() { } 57 MockWebMediaStreamCenter() { }
57 }; 58 };
58 59
59 } 60 }
60 61
61 #endif // MockWebMediaStreamCenter_h 62 #endif // MockWebMediaStreamCenter_h
62 63
OLDNEW
« no previous file with comments | « Source/testing/runner/MockWebMIDIAccessor.h ('k') | Source/testing/runner/MockWebRTCDTMFSenderHandler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698