OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTE_PROVIDER_UTIL_H_ | |
6 #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTE_PROVIDER_UTIL_H_ | |
7 | |
8 #include "chrome/browser/media/router/media_router_mojo_impl.h" | |
9 | |
10 namespace media_router { | |
11 | |
12 #if defined(OS_WIN) | |
mark a. foltz
2016/03/24 22:59:32
If you name these media_router_provider_util_win.{
btolsch
2016/03/25 04:40:50
Done but should I leave the include in media_route
| |
13 void CanFirewallUseLocalPorts(MediaRouterMojoImpl* router); | |
mark a. foltz
2016/03/24 22:59:33
It's not a good pattern to pass a pointer to the c
mark a. foltz
2016/03/24 23:02:10
Correction: Have this method post a task to run i
btolsch
2016/03/25 04:40:50
Done.
| |
14 #endif | |
15 | |
16 } // namespace media_router | |
17 | |
18 #endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTE_PROVIDER_UTIL_H_ | |
OLD | NEW |