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_WIN_H_ | |
6 #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTE_PROVIDER_UTIL_WIN_H_ | |
7 | |
8 #include "base/callback.h" | |
9 #include "chrome/browser/media/router/media_router_mojo_impl.h" | |
imcheng
2016/03/25 06:26:30
rm this include
btolsch
2016/03/25 18:57:04
Done.
| |
10 | |
11 namespace media_router { | |
12 | |
13 void CanFirewallUseLocalPorts(base::Callback<void(bool)> callback); | |
imcheng
2016/03/25 06:26:30
use const ref for input
imcheng
2016/03/25 06:26:30
please add some comments for this function.
btolsch
2016/03/25 18:57:04
Done.
btolsch
2016/03/25 18:57:04
Done.
| |
14 | |
15 } // namespace media_router | |
16 | |
17 #endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTE_PROVIDER_UTIL_WIN_H_ | |
OLD | NEW |