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

Unified Diff: chrome/browser/safe_browsing/safe_browsing_store_file_unittest.cc

Issue 2840017: AppendASCII returns a new object. (Closed)
Patch Set: Created 10 years, 6 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: chrome/browser/safe_browsing/safe_browsing_store_file_unittest.cc
diff --git a/chrome/browser/safe_browsing/safe_browsing_store_file_unittest.cc b/chrome/browser/safe_browsing/safe_browsing_store_file_unittest.cc
index 4a2d7509bdebb5a60491d5dc7ba757d3b0e699d8..74dfc4f769fa0e7ab3a4f407d7f3614b5206a5b7 100644
--- a/chrome/browser/safe_browsing/safe_browsing_store_file_unittest.cc
+++ b/chrome/browser/safe_browsing/safe_browsing_store_file_unittest.cc
@@ -27,7 +27,7 @@ class SafeBrowsingStoreFileTest : public PlatformTest {
file_deleter_.reset(new FileAutoDeleter(temp_dir));
filename_ = temp_dir;
- filename_.AppendASCII("SafeBrowsingTestStore");
+ filename_ = filename_.AppendASCII("SafeBrowsingTestStore");
file_util::Delete(filename_, false);
// Make sure an old temporary file isn't hanging around.

Powered by Google App Engine
This is Rietveld 408576698