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

Unified Diff: content/browser/plugin_private_storage_helper.cc

Issue 2228403003: content: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased 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
Index: content/browser/plugin_private_storage_helper.cc
diff --git a/content/browser/plugin_private_storage_helper.cc b/content/browser/plugin_private_storage_helper.cc
index d7c6228a294541d4c7bd67ad308f60d6791f9640..3d241ea36b5e0eb0ab8fe2b6bc47c7ebb6c021c7 100644
--- a/content/browser/plugin_private_storage_helper.cc
+++ b/content/browser/plugin_private_storage_helper.cc
@@ -395,7 +395,7 @@ void ClearPluginPrivateDataOnFileTaskRunner(
// If a specific origin is provided, then check that it is in the list
// returned and remove all the other origins.
if (!storage_origin.is_empty()) {
- if (!ContainsKey(origins, storage_origin)) {
+ if (!base::ContainsKey(origins, storage_origin)) {
// Nothing matches, so nothing to do.
callback.Run();
return;

Powered by Google App Engine
This is Rietveld 408576698