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

Unified Diff: webkit/fileapi/file_system_path_manager_unittest.cc

Issue 6042009: Added WARN_UNUSED_RESULT to ScopedTempDir methods. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: OSX build fix Created 9 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 | « webkit/fileapi/file_system_operation_unittest.cc ('k') | webkit/tools/test_shell/simple_database_system.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/file_system_path_manager_unittest.cc
diff --git a/webkit/fileapi/file_system_path_manager_unittest.cc b/webkit/fileapi/file_system_path_manager_unittest.cc
index 7fa3672a74c0f9316afbaf216076dcbf4f3ef479..1aee2cd03bb4a039a2a8f934c22c81941406c55b 100644
--- a/webkit/fileapi/file_system_path_manager_unittest.cc
+++ b/webkit/fileapi/file_system_path_manager_unittest.cc
@@ -165,7 +165,7 @@ class FileSystemPathManagerTest : public testing::Test {
void SetUp() {
data_dir_.reset(new ScopedTempDir);
- data_dir_->CreateUniqueTempDir();
+ ASSERT_TRUE(data_dir_->CreateUniqueTempDir());
ASSERT_TRUE(data_dir_->IsValid());
Scott Hess - ex-Googler 2011/01/06 19:17:26 Second ASSERT_TRUE() is probably now removable.
cbentzel 2011/01/06 19:20:33 Thanks. Done.
root_path_callback_status_ = false;
root_path_.clear();
« no previous file with comments | « webkit/fileapi/file_system_operation_unittest.cc ('k') | webkit/tools/test_shell/simple_database_system.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698