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

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

Issue 1882243004: Convert //chrome/browser/sync from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address feedback Created 4 years, 8 months 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/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 3a9a96a7a2f15107b9052ca434ff14808b49a609..fa106ea045de0a3c28a50ac311df0a30a562975b 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
@@ -54,7 +54,7 @@ IN_PROC_BROWSER_TEST_F(TwoClientWifiCredentialsSyncTest, SingleCredential) {
ASSERT_TRUE(SetupSync()) << "SetupSync() failed.";
const char ssid[] = "fake-ssid";
- scoped_ptr<WifiCredential> credential =
+ std::unique_ptr<WifiCredential> credential =
wifi_credentials_helper::MakeWifiCredential(
ssid, wifi_sync::SECURITY_CLASS_PSK, "fake_passphrase");
ASSERT_TRUE(credential);

Powered by Google App Engine
This is Rietveld 408576698