Index: chrome/browser/extensions/api/history/history_api.h |
diff --git a/chrome/browser/extensions/api/history/history_api.h b/chrome/browser/extensions/api/history/history_api.h |
index 55c48faa7773dc243483d0d26b2b6cf127c0d95a..bfbb014049e802dc750f75907971f36cc989c6d0 100644 |
--- a/chrome/browser/extensions/api/history/history_api.h |
+++ b/chrome/browser/extensions/api/history/history_api.h |
@@ -52,7 +52,7 @@ class HistoryEventRouter : public history::HistoryServiceObserver { |
void DispatchEvent(Profile* profile, |
events::HistogramValue histogram_value, |
const std::string& event_name, |
- scoped_ptr<base::ListValue> event_args); |
+ std::unique_ptr<base::ListValue> event_args); |
Profile* profile_; |
ScopedObserver<history::HistoryService, history::HistoryServiceObserver> |
@@ -87,7 +87,7 @@ class HistoryAPI : public BrowserContextKeyedAPI, public EventRouter::Observer { |
static const bool kServiceIsNULLWhileTesting = true; |
// Created lazily upon OnListenerAdded. |
- scoped_ptr<HistoryEventRouter> history_event_router_; |
+ std::unique_ptr<HistoryEventRouter> history_event_router_; |
}; |
template <> |