| Index: chrome/service/cloud_print/cloud_print_auth.h
|
| diff --git a/chrome/service/cloud_print/cloud_print_auth.h b/chrome/service/cloud_print/cloud_print_auth.h
|
| index 3b2e8642ae6aaf0f67f4c86bb3ea9264486572ce..06692cbee63b7cb3ae7da0f65067cb7643dad599 100644
|
| --- a/chrome/service/cloud_print/cloud_print_auth.h
|
| +++ b/chrome/service/cloud_print/cloud_print_auth.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_AUTH_H_
|
| #define CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_AUTH_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/macros.h"
|
| @@ -80,7 +81,7 @@ class CloudPrintAuth
|
|
|
| Client* client_;
|
| gaia::OAuthClientInfo oauth_client_info_;
|
| - scoped_ptr<gaia::GaiaOAuthClient> oauth_client_;
|
| + std::unique_ptr<gaia::GaiaOAuthClient> oauth_client_;
|
|
|
| // The CloudPrintURLFetcher instance for the current request.
|
| scoped_refptr<CloudPrintURLFetcher> request_;
|
|
|