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

Unified Diff: ui/views/controls/table/table_view_win.h

Issue 11639042: views: Convert scoped_arrays to the new scoped_ptr style. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 | « no previous file | ui/views/painter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/controls/table/table_view_win.h
diff --git a/ui/views/controls/table/table_view_win.h b/ui/views/controls/table/table_view_win.h
index ae89a88b08717abfc996e5a35c9a411d6f5fdc7d..66b4719aab56eeb7e63ed8dfc5ba19b649af8160 100644
--- a/ui/views/controls/table/table_view_win.h
+++ b/ui/views/controls/table/table_view_win.h
@@ -492,8 +492,8 @@ class VIEWS_EXPORT TableView : public NativeControl,
SortDescriptors sort_descriptors_;
// Mappings used when sorted.
- scoped_array<int> view_to_model_;
- scoped_array<int> model_to_view_;
+ scoped_ptr<int[]> view_to_model_;
+ scoped_ptr<int[]> model_to_view_;
string16 alt_text_;
« no previous file with comments | « no previous file | ui/views/painter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698