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

Unified Diff: remoting/base/util_unittest.cc

Issue 13642007: Rewrite scoped_array<T> to scoped_ptr<T[]> in remoting/, Linux edition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Manually rewrite Win files. Created 7 years, 8 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 | « remoting/base/util.cc ('k') | remoting/client/audio_player_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/base/util_unittest.cc
diff --git a/remoting/base/util_unittest.cc b/remoting/base/util_unittest.cc
index 4fc190dd44ac9ccb0e2f6ac21be9cf7d9efb6d64..a269c076ce53ab37a64267118cdbff07ae07422c 100644
--- a/remoting/base/util_unittest.cc
+++ b/remoting/base/util_unittest.cc
@@ -128,13 +128,13 @@ class YuvToRgbTester {
private:
size_t yuv_buffer_size_;
- scoped_array<uint8> yuv_buffer_;
+ scoped_ptr<uint8[]> yuv_buffer_;
uint8* yplane_;
uint8* uplane_;
uint8* vplane_;
size_t rgb_buffer_size_;
- scoped_array<uint8> rgb_buffer_;
+ scoped_ptr<uint8[]> rgb_buffer_;
DISALLOW_COPY_AND_ASSIGN(YuvToRgbTester);
};
« no previous file with comments | « remoting/base/util.cc ('k') | remoting/client/audio_player_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698