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

Unified Diff: ios/chrome/browser/signin/signin_client_impl.mm

Issue 2762973002: [ios] Add TODO to record usages of "return std::move(foo)" pattern. (Closed)
Patch Set: Created 3 years, 9 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: ios/chrome/browser/signin/signin_client_impl.mm
diff --git a/ios/chrome/browser/signin/signin_client_impl.mm b/ios/chrome/browser/signin/signin_client_impl.mm
index e0e0d3bdb2740a1861bcebf11a2e69f901b2a9ca..1895cd66314cf989994db9c3ba951ef11332dd85 100644
--- a/ios/chrome/browser/signin/signin_client_impl.mm
+++ b/ios/chrome/browser/signin/signin_client_impl.mm
@@ -144,6 +144,7 @@ SigninClientImpl::AddCookieChangedCallback(
DCHECK(context_getter.get());
std::unique_ptr<SigninCookieChangedSubscription> subscription(
new SigninCookieChangedSubscription(context_getter, url, name, callback));
+ // TODO(crbug.com/703565): remove std::move() once Xcode 9.0+ is required.
return std::move(subscription);
}
« no previous file with comments | « ios/chrome/browser/signin/fake_signin_manager_builder.cc ('k') | ios/chrome/browser/signin/signin_manager_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698