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

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

Issue 145033006: views: Make View::set_border() take a scoped_ptr<>. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Further renaming Created 6 years, 11 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.cc
diff --git a/ash/system/ime/tray_ime.cc b/ash/system/ime/tray_ime.cc
index 0a87998a3a3f6b03ccb9d1374ddfda8a2d6fd458..1551a8f9268d1fd6549a7b4878efff57da4caa1a 100644
--- a/ash/system/ime/tray_ime.cc
+++ b/ash/system/ime/tray_ime.cc
@@ -128,7 +128,7 @@ class IMEDetailedView : public TrayDetailsView,
property_list[i].name,
property_list[i].selected ? gfx::Font::BOLD : gfx::Font::NORMAL);
if (i == 0)
- container->set_border(views::Border::CreateSolidSidedBorder(1, 0, 0, 0,
+ container->SetBorder(views::Border::CreateSolidSidedBorder(1, 0, 0, 0,
kBorderLightColor));
scroll_content()->AddChildView(container);
property_map_[container] = property_list[i].key;

Powered by Google App Engine
This is Rietveld 408576698