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

Unified Diff: chrome/utility/chrome_content_utility_client.cc

Issue 2230203002: chrome: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed accidental components/ change 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: chrome/utility/chrome_content_utility_client.cc
diff --git a/chrome/utility/chrome_content_utility_client.cc b/chrome/utility/chrome_content_utility_client.cc
index cfe37b0883688b094fcff45e310b762888b3211e..46216605c8697dae91dec91ca70bb847eeea4e5f 100644
--- a/chrome/utility/chrome_content_utility_client.cc
+++ b/chrome/utility/chrome_content_utility_client.cc
@@ -152,8 +152,10 @@ void ChromeContentUtilityClient::UtilityThreadStarted() {
bool ChromeContentUtilityClient::OnMessageReceived(
const IPC::Message& message) {
- if (filter_messages_ && !ContainsKey(message_id_whitelist_, message.type()))
+ if (filter_messages_ &&
+ !base::ContainsKey(message_id_whitelist_, message.type())) {
return false;
+ }
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(ChromeContentUtilityClient, message)
« no previous file with comments | « chrome/test/media_router/media_router_e2e_browsertest.cc ('k') | chrome/utility/importer/firefox_importer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698