| Index: components/rappor/log_uploader.h
 | 
| diff --git a/components/rappor/log_uploader.h b/components/rappor/log_uploader.h
 | 
| index e1eba5b3cee949f4fc78e959700b6ed935d28176..a6dc8bada082ef94af47fd7f489b852ac185002e 100644
 | 
| --- a/components/rappor/log_uploader.h
 | 
| +++ b/components/rappor/log_uploader.h
 | 
| @@ -5,12 +5,12 @@
 | 
|  #ifndef COMPONENTS_RAPPOR_LOG_UPLOADER_H_
 | 
|  #define COMPONENTS_RAPPOR_LOG_UPLOADER_H_
 | 
|  
 | 
| +#include <memory>
 | 
|  #include <queue>
 | 
|  #include <string>
 | 
|  
 | 
|  #include "base/compiler_specific.h"
 | 
|  #include "base/macros.h"
 | 
| -#include "base/memory/scoped_ptr.h"
 | 
|  #include "base/time/time.h"
 | 
|  #include "base/timer/timer.h"
 | 
|  #include "components/rappor/log_uploader_interface.h"
 | 
| @@ -90,7 +90,7 @@ class LogUploader : public net::URLFetcherDelegate,
 | 
|    bool is_running_;
 | 
|  
 | 
|    // The outstanding transmission that appears as a URL Fetch operation.
 | 
| -  scoped_ptr<net::URLFetcher> current_fetch_;
 | 
| +  std::unique_ptr<net::URLFetcher> current_fetch_;
 | 
|  
 | 
|    // The logs that still need to be uploaded.
 | 
|    std::queue<std::string> queued_logs_;
 | 
| 
 |