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

Unified Diff: chrome/browser/ui/cocoa/download/download_show_all_cell.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/cocoa/download/download_show_all_cell.h
diff --git a/chrome/browser/ui/cocoa/download/download_show_all_cell.h b/chrome/browser/ui/cocoa/download/download_show_all_cell.h
index 80dd57407207b21cde6f2d27b059c2e36483bae4..be296a9497040ac219bba9df4cd904229f51f7a8 100644
--- a/chrome/browser/ui/cocoa/download/download_show_all_cell.h
+++ b/chrome/browser/ui/cocoa/download/download_show_all_cell.h
@@ -5,13 +5,14 @@
#ifndef CHROME_BROWSER_UI_COCOA_DOWNLOAD_DOWNLOAD_SHOW_ALL_CELL_H_
#define CHROME_BROWSER_UI_COCOA_DOWNLOAD_DOWNLOAD_SHOW_ALL_CELL_H_
-#include "base/memory/scoped_ptr.h"
+#include <memory>
+
#import "chrome/browser/ui/cocoa/gradient_button_cell.h"
// The cell of the "Show All" button on the download shelf.
@interface DownloadShowAllCell : GradientButtonCell<NSAnimationDelegate> {
@private
- scoped_ptr<ui::ThemeProvider> themeProvider_;
+ std::unique_ptr<ui::ThemeProvider> themeProvider_;
}
@end

Powered by Google App Engine
This is Rietveld 408576698