Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(467)

Unified Diff: chrome/browser/sync/test/integration/wifi_credentials_helper.cc

Issue 1426393003: NOT FOR REVIEW Base URL: https://chromium.googlesource.com/chromium/src.git@submit-4.5-split-wcss
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync/test/integration/wifi_credentials_helper.cc
diff --git a/chrome/browser/sync/test/integration/wifi_credentials_helper.cc b/chrome/browser/sync/test/integration/wifi_credentials_helper.cc
index 7472aa1e228041fb3d8d9a03310c6c54e99e1e4e..51a2ebc2f5ea65f38caa39afb07fe61a97cad01f 100644
--- a/chrome/browser/sync/test/integration/wifi_credentials_helper.cc
+++ b/chrome/browser/sync/test/integration/wifi_credentials_helper.cc
@@ -137,7 +137,6 @@ scoped_ptr<WifiCredential> MakeWifiCredential(const std::string& ssid,
}
void AddWifiCredential(int profile_index,
- const std::string& sync_id,
const WifiCredential& credential) {
AddWifiCredentialToProfile(test()->GetProfile(profile_index), credential);
if (test()->use_verifier())
@@ -146,8 +145,7 @@ void AddWifiCredential(int profile_index,
// TODO(quiche): Remove this, once we have plumbing to route
// NetworkConfigurationObserver events to
// WifiCredentialSyncableService instances.
- GetServiceForProfile(profile_index)
- ->AddToSyncedNetworks(sync_id, credential);
+ GetServiceForProfile(profile_index)->AddToSyncedNetworks(credential);
}
WifiCredentialSet GetWifiCredentialsForProfile(const Profile* profile) {

Powered by Google App Engine
This is Rietveld 408576698