| Index: components/page_load_metrics/browser/metrics_web_contents_observer.h
|
| diff --git a/components/page_load_metrics/browser/metrics_web_contents_observer.h b/components/page_load_metrics/browser/metrics_web_contents_observer.h
|
| index 1c8a4e5d8484b9edd34034c39906a9713e598174..7ad09b55da63a4dea853e2541e0b187d46962b4b 100644
|
| --- a/components/page_load_metrics/browser/metrics_web_contents_observer.h
|
| +++ b/components/page_load_metrics/browser/metrics_web_contents_observer.h
|
| @@ -5,7 +5,8 @@
|
| #ifndef COMPONENTS_PAGE_LOAD_METRICS_BROWSER_PAGE_LOAD_METRICS_WEB_CONTENTS_OBSERVER_H_
|
| #define COMPONENTS_PAGE_LOAD_METRICS_BROWSER_PAGE_LOAD_METRICS_WEB_CONTENTS_OBSERVER_H_
|
|
|
| -#include "base/containers/scoped_ptr_map.h"
|
| +#include <map>
|
| +
|
| #include "base/macros.h"
|
| #include "base/observer_list.h"
|
| #include "base/time/time.h"
|
| @@ -290,7 +291,7 @@ class MetricsWebContentsObserver
|
| // yet. Once a navigation is committed, it moves from the map to
|
| // committed_load_. Note that a PageLoadTrackers NavigationHandle is only
|
| // valid until commit time, when we remove it from the map.
|
| - base::ScopedPtrMap<content::NavigationHandle*, scoped_ptr<PageLoadTracker>>
|
| + std::map<content::NavigationHandle*, scoped_ptr<PageLoadTracker>>
|
| provisional_loads_;
|
| scoped_ptr<PageLoadTracker> committed_load_;
|
|
|
|
|