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

Unified Diff: chrome/browser/search_engines/template_url_parser_unittest.cc

Issue 2305813002: Remove ScopedVector from importer. (Closed)
Patch Set: pkasting Created 4 years, 3 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/importer/profile_writer.cc ('k') | components/search_engines/template_url_fetcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/search_engines/template_url_parser_unittest.cc
diff --git a/chrome/browser/search_engines/template_url_parser_unittest.cc b/chrome/browser/search_engines/template_url_parser_unittest.cc
index 8319d3faad0aeee0002cd81aeaeed3217ab0a64e..761abb7c1d9f43a4d6c07322d1f16bd76b7cfd98 100644
--- a/chrome/browser/search_engines/template_url_parser_unittest.cc
+++ b/chrome/browser/search_engines/template_url_parser_unittest.cc
@@ -101,8 +101,8 @@ void TemplateURLParserTest::ParseFile(
std::string contents;
ASSERT_TRUE(base::ReadFileToString(full_path, &contents));
- template_url_.reset(TemplateURLParser::Parse(
- SearchTermsData(), false, contents.data(), contents.length(), filter));
+ template_url_ = TemplateURLParser::Parse(
+ SearchTermsData(), false, contents.data(), contents.length(), filter);
}
« no previous file with comments | « chrome/browser/importer/profile_writer.cc ('k') | components/search_engines/template_url_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698