From a9f42d7a710802c926530eb6ee1e59ca89aa07ff Mon Sep 17 00:00:00 2001 From: Alexey Polyudov Date: Wed, 24 Jun 2020 11:02:33 -0700 Subject: [PATCH] OSS fix Signed-off-by: Alexey Polyudov Change-Id: I49defdf33502bd2921ef81b8430eb15ed14532a0 --- cpp/core_v2/internal/bluetooth_endpoint_channel.cc | 14 ++++++++++++++ cpp/core_v2/internal/bluetooth_endpoint_channel.h | 14 ++++++++++++++ cpp/core_v2/internal/internal_payload.cc | 14 ++++++++++++++ cpp/core_v2/internal/internal_payload.h | 14 ++++++++++++++ cpp/core_v2/internal/internal_payload_factory.cc | 14 ++++++++++++++ cpp/core_v2/internal/internal_payload_factory.h | 14 ++++++++++++++ .../internal/internal_payload_factory_test.cc | 14 ++++++++++++++ cpp/core_v2/internal/mediums/webrtc.cc | 14 ++++++++++++++ cpp/core_v2/internal/mediums/webrtc.h | 14 ++++++++++++++ .../mediums/webrtc/data_channel_observer_impl.cc | 14 ++++++++++++++ .../mediums/webrtc/data_channel_observer_impl.h | 14 ++++++++++++++ .../mediums/webrtc/session_description_wrapper.h | 14 ++++++++++++++ .../mediums/webrtc/webrtc_socket_wrapper.h | 14 ++++++++++++++ cpp/core_v2/internal/mediums/webrtc_test.cc | 14 ++++++++++++++ cpp/core_v2/internal/mediums/wifi_lan.cc | 14 ++++++++++++++ cpp/core_v2/internal/mediums/wifi_lan.h | 14 ++++++++++++++ cpp/core_v2/internal/mediums/wifi_lan_test.cc | 14 ++++++++++++++ cpp/core_v2/internal/p2p_cluster_pcp_handler.cc | 14 ++++++++++++++ cpp/core_v2/internal/p2p_cluster_pcp_handler.h | 14 ++++++++++++++ .../internal/p2p_cluster_pcp_handler_test.cc | 14 ++++++++++++++ .../internal/p2p_point_to_point_pcp_handler.cc | 14 ++++++++++++++ .../internal/p2p_point_to_point_pcp_handler.h | 14 ++++++++++++++ cpp/core_v2/internal/p2p_star_pcp_handler.cc | 14 ++++++++++++++ cpp/core_v2/internal/p2p_star_pcp_handler.h | 14 ++++++++++++++ cpp/core_v2/internal/payload_manager.cc | 14 ++++++++++++++ cpp/core_v2/internal/payload_manager.h | 14 ++++++++++++++ cpp/core_v2/internal/payload_manager_test.cc | 14 ++++++++++++++ cpp/core_v2/internal/pcp_manager.cc | 14 ++++++++++++++ cpp/core_v2/internal/pcp_manager.h | 14 ++++++++++++++ cpp/core_v2/internal/pcp_manager_test.cc | 14 ++++++++++++++ cpp/core_v2/internal/simulation_user.cc | 14 ++++++++++++++ cpp/core_v2/internal/simulation_user.h | 14 ++++++++++++++ cpp/core_v2/internal/webrtc_endpoint_channel.cc | 14 ++++++++++++++ cpp/core_v2/internal/webrtc_endpoint_channel.h | 14 ++++++++++++++ cpp/core_v2/internal/wifi_lan_endpoint_channel.cc | 14 ++++++++++++++ cpp/core_v2/internal/wifi_lan_endpoint_channel.h | 14 ++++++++++++++ cpp/platform_v2/api/log_message.h | 14 ++++++++++++++ cpp/platform_v2/base/payload_id.h | 14 ++++++++++++++ cpp/platform_v2/base/types.h | 14 ++++++++++++++ cpp/platform_v2/impl/g3/atomic_reference.h | 14 ++++++++++++++ cpp/platform_v2/impl/g3/log_message.cc | 14 ++++++++++++++ cpp/platform_v2/impl/g3/log_message.h | 14 ++++++++++++++ cpp/platform_v2/impl/g3/wifi_lan.cc | 14 ++++++++++++++ cpp/platform_v2/impl/g3/wifi_lan.h | 14 ++++++++++++++ cpp/platform_v2/public/condition_variable_test.cc | 14 ++++++++++++++ cpp/platform_v2/public/settable_future.h | 14 ++++++++++++++ cpp/platform_v2/public/wifi_lan.cc | 14 ++++++++++++++ cpp/platform_v2/public/wifi_lan.h | 14 ++++++++++++++ cpp/platform_v2/public/wifi_lan_test.cc | 14 ++++++++++++++ 49 files changed, 686 insertions(+) diff --git a/cpp/core_v2/internal/bluetooth_endpoint_channel.cc b/cpp/core_v2/internal/bluetooth_endpoint_channel.cc index 1ae5337f..12a83ec4 100644 --- a/cpp/core_v2/internal/bluetooth_endpoint_channel.cc +++ b/cpp/core_v2/internal/bluetooth_endpoint_channel.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/bluetooth_endpoint_channel.h" #include diff --git a/cpp/core_v2/internal/bluetooth_endpoint_channel.h b/cpp/core_v2/internal/bluetooth_endpoint_channel.h index 64fc0cc0..04a275f2 100644 --- a/cpp/core_v2/internal/bluetooth_endpoint_channel.h +++ b/cpp/core_v2/internal/bluetooth_endpoint_channel.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef CORE_V2_INTERNAL_BLUETOOTH_ENDPOINT_CHANNEL_H_ #define CORE_V2_INTERNAL_BLUETOOTH_ENDPOINT_CHANNEL_H_ diff --git a/cpp/core_v2/internal/internal_payload.cc b/cpp/core_v2/internal/internal_payload.cc index 8e042093..eb847982 100644 --- a/cpp/core_v2/internal/internal_payload.cc +++ b/cpp/core_v2/internal/internal_payload.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/internal_payload.h" namespace location { diff --git a/cpp/core_v2/internal/internal_payload.h b/cpp/core_v2/internal/internal_payload.h index c2bdd868..1f3638cd 100644 --- a/cpp/core_v2/internal/internal_payload.h +++ b/cpp/core_v2/internal/internal_payload.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef CORE_V2_INTERNAL_INTERNAL_PAYLOAD_H_ #define CORE_V2_INTERNAL_INTERNAL_PAYLOAD_H_ diff --git a/cpp/core_v2/internal/internal_payload_factory.cc b/cpp/core_v2/internal/internal_payload_factory.cc index 41eb6cca..240882f2 100644 --- a/cpp/core_v2/internal/internal_payload_factory.cc +++ b/cpp/core_v2/internal/internal_payload_factory.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/internal_payload_factory.h" #include diff --git a/cpp/core_v2/internal/internal_payload_factory.h b/cpp/core_v2/internal/internal_payload_factory.h index b4e64174..3d283a28 100644 --- a/cpp/core_v2/internal/internal_payload_factory.h +++ b/cpp/core_v2/internal/internal_payload_factory.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef CORE_V2_INTERNAL_INTERNAL_PAYLOAD_FACTORY_H_ #define CORE_V2_INTERNAL_INTERNAL_PAYLOAD_FACTORY_H_ diff --git a/cpp/core_v2/internal/internal_payload_factory_test.cc b/cpp/core_v2/internal/internal_payload_factory_test.cc index b6d34037..be98af4d 100644 --- a/cpp/core_v2/internal/internal_payload_factory_test.cc +++ b/cpp/core_v2/internal/internal_payload_factory_test.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/internal_payload_factory.h" #include "core_v2/internal/offline_frames.h" diff --git a/cpp/core_v2/internal/mediums/webrtc.cc b/cpp/core_v2/internal/mediums/webrtc.cc index 20e2f1af..94eb891d 100644 --- a/cpp/core_v2/internal/mediums/webrtc.cc +++ b/cpp/core_v2/internal/mediums/webrtc.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/mediums/webrtc.h" #include diff --git a/cpp/core_v2/internal/mediums/webrtc.h b/cpp/core_v2/internal/mediums/webrtc.h index 0097d2f7..6a4e7d7d 100644 --- a/cpp/core_v2/internal/mediums/webrtc.h +++ b/cpp/core_v2/internal/mediums/webrtc.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef CORE_V2_INTERNAL_MEDIUMS_WEBRTC_H_ #define CORE_V2_INTERNAL_MEDIUMS_WEBRTC_H_ diff --git a/cpp/core_v2/internal/mediums/webrtc/data_channel_observer_impl.cc b/cpp/core_v2/internal/mediums/webrtc/data_channel_observer_impl.cc index cf048ab7..0781c501 100644 --- a/cpp/core_v2/internal/mediums/webrtc/data_channel_observer_impl.cc +++ b/cpp/core_v2/internal/mediums/webrtc/data_channel_observer_impl.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/mediums/webrtc/data_channel_observer_impl.h" namespace location { diff --git a/cpp/core_v2/internal/mediums/webrtc/data_channel_observer_impl.h b/cpp/core_v2/internal/mediums/webrtc/data_channel_observer_impl.h index f7508c1a..9c7ac1b3 100644 --- a/cpp/core_v2/internal/mediums/webrtc/data_channel_observer_impl.h +++ b/cpp/core_v2/internal/mediums/webrtc/data_channel_observer_impl.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef CORE_V2_INTERNAL_MEDIUMS_WEBRTC_DATA_CHANNEL_OBSERVER_IMPL_H_ #define CORE_V2_INTERNAL_MEDIUMS_WEBRTC_DATA_CHANNEL_OBSERVER_IMPL_H_ diff --git a/cpp/core_v2/internal/mediums/webrtc/session_description_wrapper.h b/cpp/core_v2/internal/mediums/webrtc/session_description_wrapper.h index 1c566deb..e68c816e 100644 --- a/cpp/core_v2/internal/mediums/webrtc/session_description_wrapper.h +++ b/cpp/core_v2/internal/mediums/webrtc/session_description_wrapper.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef CORE_V2_INTERNAL_MEDIUMS_WEBRTC_SESSION_DESCRIPTION_WRAPPER_H_ #define CORE_V2_INTERNAL_MEDIUMS_WEBRTC_SESSION_DESCRIPTION_WRAPPER_H_ diff --git a/cpp/core_v2/internal/mediums/webrtc/webrtc_socket_wrapper.h b/cpp/core_v2/internal/mediums/webrtc/webrtc_socket_wrapper.h index e7cc89ee..2aa66d8d 100644 --- a/cpp/core_v2/internal/mediums/webrtc/webrtc_socket_wrapper.h +++ b/cpp/core_v2/internal/mediums/webrtc/webrtc_socket_wrapper.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef CORE_V2_INTERNAL_MEDIUMS_WEBRTC_WEBRTC_SOCKET_WRAPPER_H_ #define CORE_V2_INTERNAL_MEDIUMS_WEBRTC_WEBRTC_SOCKET_WRAPPER_H_ diff --git a/cpp/core_v2/internal/mediums/webrtc_test.cc b/cpp/core_v2/internal/mediums/webrtc_test.cc index 140571f4..a375f60d 100644 --- a/cpp/core_v2/internal/mediums/webrtc_test.cc +++ b/cpp/core_v2/internal/mediums/webrtc_test.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/mediums/webrtc.h" #include "core_v2/internal/mediums/webrtc/webrtc_socket_wrapper.h" diff --git a/cpp/core_v2/internal/mediums/wifi_lan.cc b/cpp/core_v2/internal/mediums/wifi_lan.cc index 894c4b9c..cdce6237 100644 --- a/cpp/core_v2/internal/mediums/wifi_lan.cc +++ b/cpp/core_v2/internal/mediums/wifi_lan.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/mediums/wifi_lan.h" #include diff --git a/cpp/core_v2/internal/mediums/wifi_lan.h b/cpp/core_v2/internal/mediums/wifi_lan.h index 196cc2cd..6aa48aa3 100644 --- a/cpp/core_v2/internal/mediums/wifi_lan.h +++ b/cpp/core_v2/internal/mediums/wifi_lan.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef CORE_V2_INTERNAL_MEDIUMS_WIFI_LAN_H_ #define CORE_V2_INTERNAL_MEDIUMS_WIFI_LAN_H_ diff --git a/cpp/core_v2/internal/mediums/wifi_lan_test.cc b/cpp/core_v2/internal/mediums/wifi_lan_test.cc index 545d6c3b..6a6991c4 100644 --- a/cpp/core_v2/internal/mediums/wifi_lan_test.cc +++ b/cpp/core_v2/internal/mediums/wifi_lan_test.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/mediums/wifi_lan.h" #include diff --git a/cpp/core_v2/internal/p2p_cluster_pcp_handler.cc b/cpp/core_v2/internal/p2p_cluster_pcp_handler.cc index 126e193b..55ce75e1 100644 --- a/cpp/core_v2/internal/p2p_cluster_pcp_handler.cc +++ b/cpp/core_v2/internal/p2p_cluster_pcp_handler.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/p2p_cluster_pcp_handler.h" #include "core_v2/internal/bluetooth_endpoint_channel.h" diff --git a/cpp/core_v2/internal/p2p_cluster_pcp_handler.h b/cpp/core_v2/internal/p2p_cluster_pcp_handler.h index c1c5d19a..25e4757a 100644 --- a/cpp/core_v2/internal/p2p_cluster_pcp_handler.h +++ b/cpp/core_v2/internal/p2p_cluster_pcp_handler.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef CORE_V2_INTERNAL_P2P_CLUSTER_PCP_HANDLER_H_ #define CORE_V2_INTERNAL_P2P_CLUSTER_PCP_HANDLER_H_ diff --git a/cpp/core_v2/internal/p2p_cluster_pcp_handler_test.cc b/cpp/core_v2/internal/p2p_cluster_pcp_handler_test.cc index 9d3ec83d..226076fe 100644 --- a/cpp/core_v2/internal/p2p_cluster_pcp_handler_test.cc +++ b/cpp/core_v2/internal/p2p_cluster_pcp_handler_test.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/p2p_cluster_pcp_handler.h" #include diff --git a/cpp/core_v2/internal/p2p_point_to_point_pcp_handler.cc b/cpp/core_v2/internal/p2p_point_to_point_pcp_handler.cc index 60da6883..e51bb324 100644 --- a/cpp/core_v2/internal/p2p_point_to_point_pcp_handler.cc +++ b/cpp/core_v2/internal/p2p_point_to_point_pcp_handler.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/p2p_point_to_point_pcp_handler.h" namespace location { diff --git a/cpp/core_v2/internal/p2p_point_to_point_pcp_handler.h b/cpp/core_v2/internal/p2p_point_to_point_pcp_handler.h index e6da2dd9..5b4c009e 100644 --- a/cpp/core_v2/internal/p2p_point_to_point_pcp_handler.h +++ b/cpp/core_v2/internal/p2p_point_to_point_pcp_handler.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef CORE_V2_INTERNAL_P2P_POINT_TO_POINT_PCP_HANDLER_H_ #define CORE_V2_INTERNAL_P2P_POINT_TO_POINT_PCP_HANDLER_H_ diff --git a/cpp/core_v2/internal/p2p_star_pcp_handler.cc b/cpp/core_v2/internal/p2p_star_pcp_handler.cc index 25901ebc..37c7baf8 100644 --- a/cpp/core_v2/internal/p2p_star_pcp_handler.cc +++ b/cpp/core_v2/internal/p2p_star_pcp_handler.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/p2p_star_pcp_handler.h" #include diff --git a/cpp/core_v2/internal/p2p_star_pcp_handler.h b/cpp/core_v2/internal/p2p_star_pcp_handler.h index a50bd054..ab22e833 100644 --- a/cpp/core_v2/internal/p2p_star_pcp_handler.h +++ b/cpp/core_v2/internal/p2p_star_pcp_handler.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef CORE_V2_INTERNAL_P2P_STAR_PCP_HANDLER_H_ #define CORE_V2_INTERNAL_P2P_STAR_PCP_HANDLER_H_ diff --git a/cpp/core_v2/internal/payload_manager.cc b/cpp/core_v2/internal/payload_manager.cc index 4cb491f0..947bbe37 100644 --- a/cpp/core_v2/internal/payload_manager.cc +++ b/cpp/core_v2/internal/payload_manager.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/payload_manager.h" #include diff --git a/cpp/core_v2/internal/payload_manager.h b/cpp/core_v2/internal/payload_manager.h index 9e9000d1..c7475dfb 100644 --- a/cpp/core_v2/internal/payload_manager.h +++ b/cpp/core_v2/internal/payload_manager.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef CORE_V2_INTERNAL_PAYLOAD_MANAGER_H_ #define CORE_V2_INTERNAL_PAYLOAD_MANAGER_H_ diff --git a/cpp/core_v2/internal/payload_manager_test.cc b/cpp/core_v2/internal/payload_manager_test.cc index 826c6172..2b64fe16 100644 --- a/cpp/core_v2/internal/payload_manager_test.cc +++ b/cpp/core_v2/internal/payload_manager_test.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/payload_manager.h" #include "core_v2/internal/simulation_user.h" diff --git a/cpp/core_v2/internal/pcp_manager.cc b/cpp/core_v2/internal/pcp_manager.cc index caeb6353..296e2333 100644 --- a/cpp/core_v2/internal/pcp_manager.cc +++ b/cpp/core_v2/internal/pcp_manager.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/pcp_manager.h" #include "core_v2/internal/p2p_cluster_pcp_handler.h" diff --git a/cpp/core_v2/internal/pcp_manager.h b/cpp/core_v2/internal/pcp_manager.h index 811bd08b..5354335f 100644 --- a/cpp/core_v2/internal/pcp_manager.h +++ b/cpp/core_v2/internal/pcp_manager.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef CORE_V2_INTERNAL_PCP_MANAGER_H_ #define CORE_V2_INTERNAL_PCP_MANAGER_H_ diff --git a/cpp/core_v2/internal/pcp_manager_test.cc b/cpp/core_v2/internal/pcp_manager_test.cc index 15e1d6c0..ef548cae 100644 --- a/cpp/core_v2/internal/pcp_manager_test.cc +++ b/cpp/core_v2/internal/pcp_manager_test.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/pcp_manager.h" #include diff --git a/cpp/core_v2/internal/simulation_user.cc b/cpp/core_v2/internal/simulation_user.cc index 54dac813..577c5e6f 100644 --- a/cpp/core_v2/internal/simulation_user.cc +++ b/cpp/core_v2/internal/simulation_user.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/simulation_user.h" #include "core_v2/listeners.h" diff --git a/cpp/core_v2/internal/simulation_user.h b/cpp/core_v2/internal/simulation_user.h index 39fa17ee..b039e5fb 100644 --- a/cpp/core_v2/internal/simulation_user.h +++ b/cpp/core_v2/internal/simulation_user.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef CORE_V2_INTERNAL_SIMULATION_USER_H_ #define CORE_V2_INTERNAL_SIMULATION_USER_H_ diff --git a/cpp/core_v2/internal/webrtc_endpoint_channel.cc b/cpp/core_v2/internal/webrtc_endpoint_channel.cc index 0c22add5..0f5a7e40 100644 --- a/cpp/core_v2/internal/webrtc_endpoint_channel.cc +++ b/cpp/core_v2/internal/webrtc_endpoint_channel.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/webrtc_endpoint_channel.h" namespace location { diff --git a/cpp/core_v2/internal/webrtc_endpoint_channel.h b/cpp/core_v2/internal/webrtc_endpoint_channel.h index dc5b8512..cb999c94 100644 --- a/cpp/core_v2/internal/webrtc_endpoint_channel.h +++ b/cpp/core_v2/internal/webrtc_endpoint_channel.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef CORE_V2_INTERNAL_WEBRTC_ENDPOINT_CHANNEL_H_ #define CORE_V2_INTERNAL_WEBRTC_ENDPOINT_CHANNEL_H_ diff --git a/cpp/core_v2/internal/wifi_lan_endpoint_channel.cc b/cpp/core_v2/internal/wifi_lan_endpoint_channel.cc index a2623a38..262c7e47 100644 --- a/cpp/core_v2/internal/wifi_lan_endpoint_channel.cc +++ b/cpp/core_v2/internal/wifi_lan_endpoint_channel.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "core_v2/internal/wifi_lan_endpoint_channel.h" #include diff --git a/cpp/core_v2/internal/wifi_lan_endpoint_channel.h b/cpp/core_v2/internal/wifi_lan_endpoint_channel.h index 6f985fda..846acf8d 100644 --- a/cpp/core_v2/internal/wifi_lan_endpoint_channel.h +++ b/cpp/core_v2/internal/wifi_lan_endpoint_channel.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef CORE_V2_INTERNAL_WIFI_LAN_ENDPOINT_CHANNEL_H_ #define CORE_V2_INTERNAL_WIFI_LAN_ENDPOINT_CHANNEL_H_ diff --git a/cpp/platform_v2/api/log_message.h b/cpp/platform_v2/api/log_message.h index f2e25e48..46f97f5c 100644 --- a/cpp/platform_v2/api/log_message.h +++ b/cpp/platform_v2/api/log_message.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef PLATFORM_V2_API_LOG_MESSAGE_H_ #define PLATFORM_V2_API_LOG_MESSAGE_H_ diff --git a/cpp/platform_v2/base/payload_id.h b/cpp/platform_v2/base/payload_id.h index 81f2e730..398565d8 100644 --- a/cpp/platform_v2/base/payload_id.h +++ b/cpp/platform_v2/base/payload_id.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef PLATFORM_V2_BASE_PAYLOAD_ID_H_ #define PLATFORM_V2_BASE_PAYLOAD_ID_H_ diff --git a/cpp/platform_v2/base/types.h b/cpp/platform_v2/base/types.h index 3ac71f9a..5e9db28c 100644 --- a/cpp/platform_v2/base/types.h +++ b/cpp/platform_v2/base/types.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef PLATFORM_V2_BASE_TYPES_H_ #define PLATFORM_V2_BASE_TYPES_H_ diff --git a/cpp/platform_v2/impl/g3/atomic_reference.h b/cpp/platform_v2/impl/g3/atomic_reference.h index 2b33860f..e9e54186 100644 --- a/cpp/platform_v2/impl/g3/atomic_reference.h +++ b/cpp/platform_v2/impl/g3/atomic_reference.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef PLATFORM_V2_IMPL_G3_ATOMIC_REFERENCE_H_ #define PLATFORM_V2_IMPL_G3_ATOMIC_REFERENCE_H_ diff --git a/cpp/platform_v2/impl/g3/log_message.cc b/cpp/platform_v2/impl/g3/log_message.cc index a9dce4f3..803fee4f 100644 --- a/cpp/platform_v2/impl/g3/log_message.cc +++ b/cpp/platform_v2/impl/g3/log_message.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "platform_v2/impl/g3/log_message.h" #include diff --git a/cpp/platform_v2/impl/g3/log_message.h b/cpp/platform_v2/impl/g3/log_message.h index d9e65076..f86bd47a 100644 --- a/cpp/platform_v2/impl/g3/log_message.h +++ b/cpp/platform_v2/impl/g3/log_message.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef PLATFORM_V2_IMPL_G3_LOG_MESSAGE_H_ #define PLATFORM_V2_IMPL_G3_LOG_MESSAGE_H_ diff --git a/cpp/platform_v2/impl/g3/wifi_lan.cc b/cpp/platform_v2/impl/g3/wifi_lan.cc index 2088c8e0..77ec80d8 100644 --- a/cpp/platform_v2/impl/g3/wifi_lan.cc +++ b/cpp/platform_v2/impl/g3/wifi_lan.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "platform_v2/impl/g3/wifi_lan.h" #include diff --git a/cpp/platform_v2/impl/g3/wifi_lan.h b/cpp/platform_v2/impl/g3/wifi_lan.h index c8995c02..fb3a8270 100644 --- a/cpp/platform_v2/impl/g3/wifi_lan.h +++ b/cpp/platform_v2/impl/g3/wifi_lan.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef PLATFORM_V2_IMPL_G3_WIFI_LAN_H_ #define PLATFORM_V2_IMPL_G3_WIFI_LAN_H_ diff --git a/cpp/platform_v2/public/condition_variable_test.cc b/cpp/platform_v2/public/condition_variable_test.cc index 6a3dd610..d2b3805c 100644 --- a/cpp/platform_v2/public/condition_variable_test.cc +++ b/cpp/platform_v2/public/condition_variable_test.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "platform_v2/public/condition_variable.h" #include "platform_v2/public/logging.h" diff --git a/cpp/platform_v2/public/settable_future.h b/cpp/platform_v2/public/settable_future.h index bf0d459c..a62cf263 100644 --- a/cpp/platform_v2/public/settable_future.h +++ b/cpp/platform_v2/public/settable_future.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef PLATFORM_V2_PUBLIC_SETTABLE_FUTURE_H_ #define PLATFORM_V2_PUBLIC_SETTABLE_FUTURE_H_ diff --git a/cpp/platform_v2/public/wifi_lan.cc b/cpp/platform_v2/public/wifi_lan.cc index 32eefa18..9fd17af0 100644 --- a/cpp/platform_v2/public/wifi_lan.cc +++ b/cpp/platform_v2/public/wifi_lan.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "platform_v2/public/wifi_lan.h" #include "platform_v2/public/logging.h" diff --git a/cpp/platform_v2/public/wifi_lan.h b/cpp/platform_v2/public/wifi_lan.h index 7274414f..8b19018f 100644 --- a/cpp/platform_v2/public/wifi_lan.h +++ b/cpp/platform_v2/public/wifi_lan.h @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef PLATFORM_V2_PUBLIC_WIFI_LAN_H_ #define PLATFORM_V2_PUBLIC_WIFI_LAN_H_ diff --git a/cpp/platform_v2/public/wifi_lan_test.cc b/cpp/platform_v2/public/wifi_lan_test.cc index 398fa242..7b8f762b 100644 --- a/cpp/platform_v2/public/wifi_lan_test.cc +++ b/cpp/platform_v2/public/wifi_lan_test.cc @@ -1,3 +1,17 @@ +// Copyright 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "platform_v2/public/wifi_lan.h" #include