| Index: chrome/browser/sync/test/integration/two_client_wifi_credentials_sync_test.cc
|
| diff --git a/chrome/browser/sync/test/integration/two_client_wifi_credentials_sync_test.cc b/chrome/browser/sync/test/integration/two_client_wifi_credentials_sync_test.cc
|
| index b18506bf172c319b08c88c1980df866033fe8b35..8c1b664301faaad2f88082bde97b89eb77316609 100644
|
| --- a/chrome/browser/sync/test/integration/two_client_wifi_credentials_sync_test.cc
|
| +++ b/chrome/browser/sync/test/integration/two_client_wifi_credentials_sync_test.cc
|
| @@ -10,12 +10,12 @@
|
| #include "chrome/browser/sync/test/integration/sync_test.h"
|
| #include "chrome/browser/sync/test/integration/wifi_credentials_helper.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 TwoClientWifiCredentialsSyncTest : public SyncTest {
|
| public:
|
| @@ -56,7 +56,7 @@ IN_PROC_BROWSER_TEST_F(TwoClientWifiCredentialsSyncTest, 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_a_index = 0;
|
|
|