| Index: components/metrics/profiler/content/content_tracking_synchronizer_delegate.h
|
| diff --git a/components/metrics/profiler/content/content_tracking_synchronizer_delegate.h b/components/metrics/profiler/content/content_tracking_synchronizer_delegate.h
|
| index c648347c8cf71f89393844dee1ee5342b1afa7d0..cfb370d787ce6ea75d9064d37fe80b2a4e2674cf 100644
|
| --- a/components/metrics/profiler/content/content_tracking_synchronizer_delegate.h
|
| +++ b/components/metrics/profiler/content/content_tracking_synchronizer_delegate.h
|
| @@ -5,8 +5,9 @@
|
| #ifndef COMPONENTS_METRICS_PROFILER_CONTENT_CONTENT_TRACKING_SYNCHRONIZER_DELEGATE_H_
|
| #define COMPONENTS_METRICS_PROFILER_CONTENT_CONTENT_TRACKING_SYNCHRONIZER_DELEGATE_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "components/metrics/profiler/tracking_synchronizer_delegate.h"
|
| #include "content/public/browser/profiler_subscriber.h"
|
|
|
| @@ -22,7 +23,7 @@ class ContentTrackingSynchronizerDelegate : public TrackingSynchronizerDelegate,
|
|
|
| // Creates a ContentTrackingSynchronizerDelegate that is associated with
|
| // |synchronizer_|.
|
| - static scoped_ptr<TrackingSynchronizerDelegate> Create(
|
| + static std::unique_ptr<TrackingSynchronizerDelegate> Create(
|
| TrackingSynchronizer* synchronizer);
|
|
|
| private:
|
|
|