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_MEDIA_ROUTE_ID_H_ | 5 #include "chrome/browser/media/router/mock_media_router.h" |
6 #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTE_ID_H_ | |
7 | |
8 #include <string> | |
9 | 6 |
10 namespace media_router { | 7 namespace media_router { |
11 | 8 |
12 using MediaRouteId = std::string; | 9 MockMediaRouter::MockMediaRouter() { |
| 10 } |
| 11 |
| 12 MockMediaRouter::~MockMediaRouter() { |
| 13 } |
13 | 14 |
14 } // namespace media_router | 15 } // namespace media_router |
15 | |
16 #endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTE_ID_H_ | |
OLD | NEW |