Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6795)

Unified Diff: chrome/browser/ui/webui/options/clear_browser_data_handler.h

Issue 1865213004: Convert //chrome/browser/ui from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698