| Index: components/sync_wifi/wifi_credential_unittest.cc
|
| diff --git a/components/wifi_sync/wifi_credential_unittest.cc b/components/sync_wifi/wifi_credential_unittest.cc
|
| similarity index 96%
|
| rename from components/wifi_sync/wifi_credential_unittest.cc
|
| rename to components/sync_wifi/wifi_credential_unittest.cc
|
| index aff6d39f133729a3e207fb5470b1d82aa3b290d9..eb91a378945da30fa15cd1622de6dc0e5e3c68e3 100644
|
| --- a/components/wifi_sync/wifi_credential_unittest.cc
|
| +++ b/components/sync_wifi/wifi_credential_unittest.cc
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "components/wifi_sync/wifi_credential.h"
|
| +#include "components/sync_wifi/wifi_credential.h"
|
|
|
| #include <memory>
|
|
|
| @@ -11,7 +11,7 @@
|
| #include "components/onc/onc_constants.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| -namespace wifi_sync {
|
| +namespace sync_wifi {
|
|
|
| namespace {
|
|
|
| @@ -33,8 +33,8 @@ WifiCredential MakeCredential(const std::string& ssid,
|
|
|
| bool TypeIsWifi(const base::DictionaryValue& onc_properties) {
|
| std::string network_type;
|
| - EXPECT_TRUE(onc_properties.GetString(
|
| - onc::toplevel_config::kType, &network_type));
|
| + EXPECT_TRUE(
|
| + onc_properties.GetString(onc::toplevel_config::kType, &network_type));
|
| return network_type == onc::network_type::kWiFi;
|
| }
|
|
|
| @@ -131,4 +131,4 @@ TEST(WifiCredentialTest, ToOncPropertiesSsidNonUtf8) {
|
| EXPECT_FALSE(onc_properties);
|
| }
|
|
|
| -} // namespace wifi_sync
|
| +} // namespace sync_wifi
|
|
|