diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-18 14:21:58 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-18 14:21:58 +0000 |
commit | 604eb05b99b6098d36abadd2c1c2b6a1a79b705a (patch) | |
tree | a57ea3e89c68cc897af73baaf536ddfe38fda8b1 /base/nix | |
parent | 64c25e10e8d8e53c536c322d274765cb93eaca77 (diff) | |
download | chromium_src-604eb05b99b6098d36abadd2c1c2b6a1a79b705a.zip chromium_src-604eb05b99b6098d36abadd2c1c2b6a1a79b705a.tar.gz chromium_src-604eb05b99b6098d36abadd2c1c2b6a1a79b705a.tar.bz2 |
base: Convert scoped_arrays to the new scoped_ptr style.
BUG=109874
R=darin@chromium.org,ajwong@chromium.org
Review URL: https://chromiumcodereview.appspot.com/11961021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@177670 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/nix')
-rw-r--r-- | base/nix/mime_util_xdg.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/nix/mime_util_xdg.cc b/base/nix/mime_util_xdg.cc index e58e03d..2e0dbee 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. std::string inherits_; // Name of the theme this one inherits from. }; |