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

Unified Diff: base/nix/mime_util_xdg.cc

Issue 11961021: base: Convert scoped_arrays to the new scoped_ptr style. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert callback changes Created 7 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
« no previous file with comments | « base/md5_unittest.cc ('k') | base/pickle_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/nix/mime_util_xdg.cc
diff --git a/base/nix/mime_util_xdg.cc b/base/nix/mime_util_xdg.cc
index e58e03dca1e0c04f433ee2ec86088eac41347018..2e0dbeea5a36cc14c753605db8e7a51b6e07a00a 100644
--- a/base/nix/mime_util_xdg.cc
+++ b/base/nix/mime_util_xdg.cc
@@ -160,7 +160,7 @@ class IconTheme {
// store the subdirs of this theme and array index of |info_array_|.
std::map<std::string, int> subdirs_;
- scoped_array<SubDirInfo> info_array_; // List of sub-directories.
+ scoped_ptr<SubDirInfo[]> info_array_; // List of sub-directories.
dcheng 2013/01/20 01:47:21 FYI, there are some issues we still need to resolv
std::string inherits_; // Name of the theme this one inherits from.
};
« no previous file with comments | « base/md5_unittest.cc ('k') | base/pickle_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698