Chromium Code Reviews| Index: content/public/common/webrtc_ip_handling_policy.cc |
| diff --git a/content/public/common/webrtc_ip_handling_policy.cc b/content/public/common/webrtc_ip_handling_policy.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2f6b37a665c3e26e034e9bd335c27881df6c4974 |
| --- /dev/null |
| +++ b/content/public/common/webrtc_ip_handling_policy.cc |
| @@ -0,0 +1,17 @@ |
| +// 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.
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "content/public/common/webrtc_ip_handling_policy.h" |
| + |
| +namespace content { |
| + |
| +// The set of strings here need to match what's specified in privacy.json. |
| +const char kWebRTCIPHandlingDefault[] = "default"; |
| +const char kWebRTCIPHandlingDefaultPublicAndPrivateInterfaces[] = |
| + "default_public_and_private_interfaces"; |
| +const char kWebRTCIPHandlingDefaultPublicInterfaceOnly[] = |
| + "default_public_interface_only"; |
| +const char kWebRTCIPHandlingDisableNonProxiedUdp[] = "disable_non_proxied_udp"; |
| + |
| +} // namespace content |