| Index: sync/internal_api/public/http_bridge.h
|
| diff --git a/sync/internal_api/public/http_bridge.h b/sync/internal_api/public/http_bridge.h
|
| index 79c73e0c86872dcb0c54d06a2524ceab447ae8a1..0750eba02de766e3ff1365fc43301cce2eb7112f 100644
|
| --- a/sync/internal_api/public/http_bridge.h
|
| +++ b/sync/internal_api/public/http_bridge.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/compiler_specific.h"
|
| @@ -165,7 +166,7 @@ class SYNC_EXPORT HttpBridge : public base::RefCountedThreadSafe<HttpBridge>,
|
|
|
| // Timer to ensure http requests aren't stalled. Reset every time upload or
|
| // download progress is made.
|
| - scoped_ptr<base::Timer> http_request_timeout_timer;
|
| + std::unique_ptr<base::Timer> http_request_timeout_timer;
|
| };
|
|
|
| // This lock synchronizes use of state involved in the flow to fetch a URL
|
|
|