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

Unified Diff: base/win/enum_variant.h

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
Index: base/win/enum_variant.h
diff --git a/base/win/enum_variant.h b/base/win/enum_variant.h
index 7cee91d70a8626266d11bfa5886bf23a21991016..82f8750c2a0ce10717adb4be5132cdc039d63984 100644
--- a/base/win/enum_variant.h
+++ b/base/win/enum_variant.h
@@ -41,7 +41,7 @@ class BASE_EXPORT EnumVariant
private:
~EnumVariant();
- scoped_array<VARIANT> items_;
+ scoped_ptr<VARIANT[]> items_;
unsigned long count_;
unsigned long current_index_;
};

Powered by Google App Engine
This is Rietveld 408576698