OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | |
nasko
2015/11/03 18:54:01
No (c).
guoweis_webrtc
2015/11/03 23:19:22
Done.
| |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "content/public/common/webrtc_ip_handling_policy.h" | |
6 | |
7 namespace content { | |
8 | |
9 // The set of strings here need to match what's specified in privacy.json. | |
10 const char kWebRTCIPHandlingDefault[] = "default"; | |
11 const char kWebRTCIPHandlingDefaultPublicAndPrivateInterfaces[] = | |
12 "default_public_and_private_interfaces"; | |
13 const char kWebRTCIPHandlingDefaultPublicInterfaceOnly[] = | |
14 "default_public_interface_only"; | |
15 const char kWebRTCIPHandlingDisableNonProxiedUdp[] = "disable_non_proxied_udp"; | |
16 | |
17 } // namespace content | |
OLD | NEW |