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

Unified Diff: extensions/browser/content_verifier.cc

Issue 2236443003: extensions: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't add braces Created 4 years, 4 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/content_hash_tree_unittest.cc ('k') | extensions/browser/content_verify_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/content_verifier.cc
diff --git a/extensions/browser/content_verifier.cc b/extensions/browser/content_verifier.cc
index c47db07826f2fdec20cd6b3fa03ebab6a725b50c..58a899780bf147f1f955412bf5bd2188b7756194 100644
--- a/extensions/browser/content_verifier.cc
+++ b/extensions/browser/content_verifier.cc
@@ -261,7 +261,7 @@ bool ContentVerifier::ShouldVerifyAnyPaths(
if (relative_path == base::FilePath(kManifestFilename))
continue;
- if (ContainsKey(browser_images, relative_path))
+ if (base::ContainsKey(browser_images, relative_path))
continue;
base::FilePath full_path = extension_root.Append(relative_path);
« no previous file with comments | « extensions/browser/content_hash_tree_unittest.cc ('k') | extensions/browser/content_verify_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698