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

Unified Diff: ash/system/ime/tray_ime_chromeos_unittest.cc

Issue 1867223004: Convert //ash from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: ash/system/ime/tray_ime_chromeos_unittest.cc
diff --git a/ash/system/ime/tray_ime_chromeos_unittest.cc b/ash/system/ime/tray_ime_chromeos_unittest.cc
index b17d4a53398e28bb07f6a24e3199a89dbbb600c2..572f6c664032c4a1eedef92db1152ca53d39ed35 100644
--- a/ash/system/ime/tray_ime_chromeos_unittest.cc
+++ b/ash/system/ime/tray_ime_chromeos_unittest.cc
@@ -51,9 +51,9 @@ class TrayIMETest : public test::AshTestBase {
void TearDown() override;
private:
- scoped_ptr<TrayIME> tray_;
- scoped_ptr<views::View> default_view_;
- scoped_ptr<views::View> detailed_view_;
+ std::unique_ptr<TrayIME> tray_;
+ std::unique_ptr<views::View> default_view_;
+ std::unique_ptr<views::View> detailed_view_;
};
void TrayIMETest::SetUpForStatusAreaWidget(

Powered by Google App Engine
This is Rietveld 408576698