| OLD | NEW |
| 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 Loading... |
| 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_METHOD5(ConnectRouteByRouteId, |
| 39 void(const MediaSource::Id& source, |
| 40 const MediaRoute::Id& route_id, |
| 41 const GURL& origin, |
| 42 content::WebContents* web_contents, |
| 43 const std::vector<MediaRouteResponseCallback>& callbacks)); |
| 38 MOCK_METHOD1(CloseRoute, void(const MediaRoute::Id& route_id)); | 44 MOCK_METHOD1(CloseRoute, void(const MediaRoute::Id& route_id)); |
| 39 MOCK_METHOD3(SendRouteMessage, | 45 MOCK_METHOD3(SendRouteMessage, |
| 40 void(const MediaRoute::Id& route_id, | 46 void(const MediaRoute::Id& route_id, |
| 41 const std::string& message, | 47 const std::string& message, |
| 42 const SendRouteMessageCallback& callback)); | 48 const SendRouteMessageCallback& callback)); |
| 43 void SendRouteBinaryMessage( | 49 void SendRouteBinaryMessage( |
| 44 const MediaRoute::Id& route_id, | 50 const MediaRoute::Id& route_id, |
| 45 scoped_ptr<std::vector<uint8>> data, | 51 scoped_ptr<std::vector<uint8>> data, |
| 46 const SendRouteMessageCallback& callback) override { | 52 const SendRouteMessageCallback& callback) override { |
| 47 SendRouteBinaryMessageInternal(route_id, data.get(), callback); | 53 SendRouteBinaryMessageInternal(route_id, data.get(), callback); |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 void(LocalMediaRoutesObserver* observer)); | 92 void(LocalMediaRoutesObserver* observer)); |
| 87 | 93 |
| 88 private: | 94 private: |
| 89 base::CallbackList<void(content::PresentationConnectionState)> | 95 base::CallbackList<void(content::PresentationConnectionState)> |
| 90 connection_state_callbacks_; | 96 connection_state_callbacks_; |
| 91 }; | 97 }; |
| 92 | 98 |
| 93 } // namespace media_router | 99 } // namespace media_router |
| 94 | 100 |
| 95 #endif // CHROME_BROWSER_MEDIA_ROUTER_MOCK_MEDIA_ROUTER_H_ | 101 #endif // CHROME_BROWSER_MEDIA_ROUTER_MOCK_MEDIA_ROUTER_H_ |
| OLD | NEW |