summaryrefslogtreecommitdiffstats
path: root/base/nix
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-18 14:21:58 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-18 14:21:58 +0000
commit604eb05b99b6098d36abadd2c1c2b6a1a79b705a (patch)
treea57ea3e89c68cc897af73baaf536ddfe38fda8b1 /base/nix
parent64c25e10e8d8e53c536c322d274765cb93eaca77 (diff)
downloadchromium_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.cc2
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.
};