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

Side by Side Diff: chrome/browser/media/router/mock_media_router.h

Issue 1507743005: [MediaRouter] Renames CloseRoute() to Terminate() and creates DetachRoute() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Forgot a call to DetachRoute! Created 5 years 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 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #ifndef CHROME_BROWSER_MEDIA_ROUTER_MOCK_MEDIA_ROUTER_H_ 5 #ifndef CHROME_BROWSER_MEDIA_ROUTER_MOCK_MEDIA_ROUTER_H_
6 #define CHROME_BROWSER_MEDIA_ROUTER_MOCK_MEDIA_ROUTER_H_ 6 #define CHROME_BROWSER_MEDIA_ROUTER_MOCK_MEDIA_ROUTER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 17 matching lines...) Expand all
28 const MediaSink::Id& sink_id, 28 const MediaSink::Id& sink_id,
29 const GURL& origin, 29 const GURL& origin,
30 content::WebContents* web_contents, 30 content::WebContents* web_contents,
31 const std::vector<MediaRouteResponseCallback>& callbacks)); 31 const std::vector<MediaRouteResponseCallback>& callbacks));
32 MOCK_METHOD5(JoinRoute, 32 MOCK_METHOD5(JoinRoute,
33 void(const MediaSource::Id& source, 33 void(const MediaSource::Id& source,
34 const std::string& presentation_id, 34 const std::string& presentation_id,
35 const GURL& origin, 35 const GURL& origin,
36 content::WebContents* web_contents, 36 content::WebContents* web_contents,
37 const std::vector<MediaRouteResponseCallback>& callbacks)); 37 const std::vector<MediaRouteResponseCallback>& callbacks));
38 MOCK_METHOD1(CloseRoute, void(const MediaRoute::Id& route_id)); 38 MOCK_METHOD1(DetachRoute, void(const MediaRoute::Id& route_id));
39 MOCK_METHOD1(TerminateRoute, void(const MediaRoute::Id& route_id));
39 MOCK_METHOD3(SendRouteMessage, 40 MOCK_METHOD3(SendRouteMessage,
40 void(const MediaRoute::Id& route_id, 41 void(const MediaRoute::Id& route_id,
41 const std::string& message, 42 const std::string& message,
42 const SendRouteMessageCallback& callback)); 43 const SendRouteMessageCallback& callback));
43 void SendRouteBinaryMessage( 44 void SendRouteBinaryMessage(
44 const MediaRoute::Id& route_id, 45 const MediaRoute::Id& route_id,
45 scoped_ptr<std::vector<uint8>> data, 46 scoped_ptr<std::vector<uint8>> data,
46 const SendRouteMessageCallback& callback) override { 47 const SendRouteMessageCallback& callback) override {
47 SendRouteBinaryMessageInternal(route_id, data.get(), callback); 48 SendRouteBinaryMessageInternal(route_id, data.get(), callback);
48 } 49 }
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 void(LocalMediaRoutesObserver* observer)); 87 void(LocalMediaRoutesObserver* observer));
87 88
88 private: 89 private:
89 base::CallbackList<void(content::PresentationConnectionState)> 90 base::CallbackList<void(content::PresentationConnectionState)>
90 connection_state_callbacks_; 91 connection_state_callbacks_;
91 }; 92 };
92 93
93 } // namespace media_router 94 } // namespace media_router
94 95
95 #endif // CHROME_BROWSER_MEDIA_ROUTER_MOCK_MEDIA_ROUTER_H_ 96 #endif // CHROME_BROWSER_MEDIA_ROUTER_MOCK_MEDIA_ROUTER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698