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

Unified Diff: extensions/browser/verified_contents_unittest.cc

Issue 2751913009: Remove some VerifiedContents methods' params that are always false. (Closed)
Patch Set: Created 3 years, 9 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 | « extensions/browser/verified_contents.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/verified_contents_unittest.cc
diff --git a/extensions/browser/verified_contents_unittest.cc b/extensions/browser/verified_contents_unittest.cc
index 4d3c43dd96d67888f313a1e3bb62fb7b3b8b3153..c7db44697dc96b68875e6aa80375f928cab05826 100644
--- a/extensions/browser/verified_contents_unittest.cc
+++ b/extensions/browser/verified_contents_unittest.cc
@@ -58,7 +58,7 @@ TEST(VerifiedContents, Simple) {
base::FilePath verified_contents_path =
path.AppendASCII("verified_contents.json");
- ASSERT_TRUE(contents.InitFrom(verified_contents_path, false));
+ ASSERT_TRUE(contents.InitFrom(verified_contents_path));
// Make sure we get expected values.
EXPECT_EQ(contents.block_size(), 4096);
@@ -147,7 +147,7 @@ TEST(VerifiedContents, FailsOnBase64) {
base::FilePath verified_contents_path =
path.AppendASCII("verified_contents_base64.json");
- ASSERT_FALSE(contents.InitFrom(verified_contents_path, false));
+ ASSERT_FALSE(contents.InitFrom(verified_contents_path));
}
} // namespace extensions
« no previous file with comments | « extensions/browser/verified_contents.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698