summaryrefslogtreecommitdiffstats
path: root/google_apis/gaia/fake_gaia.cc
diff options
context:
space:
mode:
Diffstat (limited to 'google_apis/gaia/fake_gaia.cc')
-rw-r--r--google_apis/gaia/fake_gaia.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/google_apis/gaia/fake_gaia.cc b/google_apis/gaia/fake_gaia.cc
index 9c7e483..82c366b 100644
--- a/google_apis/gaia/fake_gaia.cc
+++ b/google_apis/gaia/fake_gaia.cc
@@ -4,6 +4,7 @@
#include "google_apis/gaia/fake_gaia.h"
+#include <utility>
#include <vector>
#include "base/base_paths.h"
@@ -308,7 +309,7 @@ scoped_ptr<HttpResponse> FakeGaia::HandleRequest(const HttpRequest& request) {
return scoped_ptr<HttpResponse>(); // Request not understood.
}
- return http_response.Pass();
+ return std::move(http_response);
}
void FakeGaia::IssueOAuthToken(const std::string& auth_token,