| Index: chrome/browser/sync/test/integration/single_client_wifi_credentials_sync_test.cc
|
| diff --git a/chrome/browser/sync/test/integration/single_client_wifi_credentials_sync_test.cc b/chrome/browser/sync/test/integration/single_client_wifi_credentials_sync_test.cc
|
| index b6a32dc5676eea7f0752950228054bd2dd492a68..11626f68bc8c57f4b3889cffb0883f0815b08119 100644
|
| --- a/chrome/browser/sync/test/integration/single_client_wifi_credentials_sync_test.cc
|
| +++ b/chrome/browser/sync/test/integration/single_client_wifi_credentials_sync_test.cc
|
| @@ -11,12 +11,12 @@
|
| #include "chrome/browser/sync/test/integration/wifi_credentials_helper.h"
|
| #include "chrome/common/chrome_switches.h"
|
| #include "components/browser_sync/browser_sync_switches.h"
|
| -#include "components/wifi_sync/wifi_credential.h"
|
| -#include "components/wifi_sync/wifi_security_class.h"
|
| +#include "components/sync_wifi/wifi_credential.h"
|
| +#include "components/sync_wifi/wifi_security_class.h"
|
|
|
| -using wifi_sync::WifiCredential;
|
| +using sync_wifi::WifiCredential;
|
|
|
| -using WifiCredentialSet = wifi_sync::WifiCredential::CredentialSet;
|
| +using WifiCredentialSet = sync_wifi::WifiCredential::CredentialSet;
|
|
|
| class SingleClientWifiCredentialsSyncTest : public SyncTest {
|
| public:
|
| @@ -57,7 +57,7 @@ IN_PROC_BROWSER_TEST_F(SingleClientWifiCredentialsSyncTest, SingleCredential) {
|
| const char ssid[] = "fake-ssid";
|
| std::unique_ptr<WifiCredential> credential =
|
| wifi_credentials_helper::MakeWifiCredential(
|
| - ssid, wifi_sync::SECURITY_CLASS_PSK, "fake_passphrase");
|
| + ssid, sync_wifi::SECURITY_CLASS_PSK, "fake_passphrase");
|
| ASSERT_TRUE(credential);
|
|
|
| const size_t profile_index = 0;
|
|
|