| Index: chrome/browser/ui/webui/options/clear_browser_data_handler.h
|
| diff --git a/chrome/browser/ui/webui/options/clear_browser_data_handler.h b/chrome/browser/ui/webui/options/clear_browser_data_handler.h
|
| index 036cb164b6bd2df37550b710c66cdbf205ebb153..3b4a4f181555043b561b22ccd485b4b489af35fb 100644
|
| --- a/chrome/browser/ui/webui/options/clear_browser_data_handler.h
|
| +++ b/chrome/browser/ui/webui/options/clear_browser_data_handler.h
|
| @@ -49,10 +49,10 @@ class ClearBrowserDataHandler : public OptionsPageUIHandler,
|
| virtual void OnBrowsingHistoryPrefChanged();
|
|
|
| // Adds a |counter| for browsing data.
|
| - void AddCounter(scoped_ptr<BrowsingDataCounter> counter);
|
| + void AddCounter(std::unique_ptr<BrowsingDataCounter> counter);
|
|
|
| // Updates a counter in the UI according to the |result|.
|
| - void UpdateCounterText(scoped_ptr<BrowsingDataCounter::Result> result);
|
| + void UpdateCounterText(std::unique_ptr<BrowsingDataCounter::Result> result);
|
|
|
| // Implementation of SyncServiceObserver. Updates the support string at the
|
| // bottom of the dialog.
|
|
|