| Index: chrome/browser/safe_browsing/download_feedback_service.h
|
| diff --git a/chrome/browser/safe_browsing/download_feedback_service.h b/chrome/browser/safe_browsing/download_feedback_service.h
|
| index 665c685564ed9fcf646e0c26d05f2227617a08e9..35058ea23923f2e127292808633ab1948f441b55 100644
|
| --- a/chrome/browser/safe_browsing/download_feedback_service.h
|
| +++ b/chrome/browser/safe_browsing/download_feedback_service.h
|
| @@ -5,12 +5,12 @@
|
| #ifndef CHROME_BROWSER_SAFE_BROWSING_DOWNLOAD_FEEDBACK_SERVICE_H_
|
| #define CHROME_BROWSER_SAFE_BROWSING_DOWNLOAD_FEEDBACK_SERVICE_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
| #include <vector>
|
|
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/threading/non_thread_safe.h"
|
| #include "chrome/browser/safe_browsing/download_protection_service.h"
|
| #include "content/public/browser/download_danger_type.h"
|
| @@ -86,7 +86,7 @@ class DownloadFeedbackService : public base::NonThreadSafe {
|
|
|
| // Currently active & pending uploads. The first item is active, remaining
|
| // items are pending.
|
| - std::vector<scoped_ptr<DownloadFeedback>> active_feedback_;
|
| + std::vector<std::unique_ptr<DownloadFeedback>> active_feedback_;
|
|
|
| base::WeakPtrFactory<DownloadFeedbackService> weak_ptr_factory_;
|
|
|
|
|