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

Unified Diff: chrome/browser/extensions/sandboxed_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/browser/extensions/sandboxed_extension_unpacker.cc ('k') | chrome/browser/utility_process_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/sandboxed_extension_unpacker_unittest.cc
===================================================================
--- chrome/browser/extensions/sandboxed_extension_unpacker_unittest.cc (revision 35541)
+++ chrome/browser/extensions/sandboxed_extension_unpacker_unittest.cc (working copy)
@@ -76,10 +76,8 @@
ASSERT_TRUE(PathService::Get(base::DIR_TEMP, &install_dir_));
install_dir_ =
install_dir_.AppendASCII("sandboxed_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/browser/extensions/sandboxed_extension_unpacker.cc ('k') | chrome/browser/utility_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698