| Index: google_apis/gaia/fake_gaia.cc
 | 
| diff --git a/google_apis/gaia/fake_gaia.cc b/google_apis/gaia/fake_gaia.cc
 | 
| index 9c7e483c767f2007fccc5f7b391ef838f7cc8671..82c366b3c8be40ab1f63ec782b0f1df90189836d 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,
 | 
| 
 |