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

Unified Diff: chrome/common/extensions/extension_unpacker_unittest.cc

Issue 526012: Merge 32345 - Parse messages.json in ExtensionUnpacker (like we do for manife... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/249/src/
Patch Set: Created 10 years, 12 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 | « chrome/common/extensions/extension_unpacker.cc ('k') | chrome/common/render_messages_internal.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/extension_unpacker_unittest.cc
===================================================================
--- chrome/common/extensions/extension_unpacker_unittest.cc (revision 35541)
+++ chrome/common/extensions/extension_unpacker_unittest.cc (working copy)
@@ -29,10 +29,8 @@
// a temp folder to play in.
ASSERT_TRUE(PathService::Get(base::DIR_TEMP, &install_dir_));
install_dir_ = install_dir_.AppendASCII("extension_unpacker_test");
- ASSERT_TRUE(file_util::Delete(install_dir_, true)) <<
- install_dir_.value();
- ASSERT_TRUE(file_util::CreateDirectory(install_dir_)) <<
- install_dir_.value();
+ file_util::Delete(install_dir_, true);
+ file_util::CreateDirectory(install_dir_);
FilePath crx_path = install_dir_.AppendASCII(crx_name);
ASSERT_TRUE(file_util::CopyFile(original_path, crx_path)) <<
« no previous file with comments | « chrome/common/extensions/extension_unpacker.cc ('k') | chrome/common/render_messages_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698