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

Unified Diff: ash/display/display_color_manager_chromeos.h

Issue 1867223004: Convert //ash from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments 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
« no previous file with comments | « ash/display/display_animator_chromeos.h ('k') | ash/display/display_color_manager_chromeos.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/display/display_color_manager_chromeos.h
diff --git a/ash/display/display_color_manager_chromeos.h b/ash/display/display_color_manager_chromeos.h
index e37fe7062693c7511e8318385cd2f609b358e6c3..081cb8f249ba39e474e84ee1331f5c8cf89065a1 100644
--- a/ash/display/display_color_manager_chromeos.h
+++ b/ash/display/display_color_manager_chromeos.h
@@ -8,6 +8,7 @@
#include <stdint.h>
#include <map>
+#include <memory>
#include <vector>
#include "ash/ash_export.h"
@@ -61,9 +62,10 @@ class ASH_EXPORT DisplayColorManager
ui::DisplayConnectionType type,
const base::FilePath& path,
bool file_downloaded);
- virtual void UpdateCalibrationData(int64_t display_id,
- int64_t product_id,
- scoped_ptr<ColorCalibrationData> data);
+ virtual void UpdateCalibrationData(
+ int64_t display_id,
+ int64_t product_id,
+ std::unique_ptr<ColorCalibrationData> data);
private:
void ApplyDisplayColorCalibration(int64_t display_id, int64_t product_id);
« no previous file with comments | « ash/display/display_animator_chromeos.h ('k') | ash/display/display_color_manager_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698