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

Unified Diff: chrome/browser/profiles/profile_io_data.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/browser/profiles/profile_io_data.cc
diff --git a/chrome/browser/profiles/profile_io_data.cc b/chrome/browser/profiles/profile_io_data.cc
index dd0f063f6af5ccb9830cd4a2e1d733384018f5d2..cb2a6b8d7a96780bdb162bba789c606d753a1618 100644
--- a/chrome/browser/profiles/profile_io_data.cc
+++ b/chrome/browser/profiles/profile_io_data.cc
@@ -817,7 +817,7 @@ net::URLRequestContext* ProfileIOData::GetIsolatedAppRequestContext(
content::URLRequestInterceptorScopedVector request_interceptors) const {
DCHECK(initialized_);
net::URLRequestContext* context = NULL;
- if (ContainsKey(app_request_context_map_, partition_descriptor)) {
+ if (base::ContainsKey(app_request_context_map_, partition_descriptor)) {
context = app_request_context_map_[partition_descriptor];
} else {
context = AcquireIsolatedAppRequestContext(
@@ -835,7 +835,8 @@ net::URLRequestContext* ProfileIOData::GetIsolatedMediaRequestContext(
const StoragePartitionDescriptor& partition_descriptor) const {
DCHECK(initialized_);
net::URLRequestContext* context = NULL;
- if (ContainsKey(isolated_media_request_context_map_, partition_descriptor)) {
+ if (base::ContainsKey(isolated_media_request_context_map_,
+ partition_descriptor)) {
context = isolated_media_request_context_map_[partition_descriptor];
} else {
context = AcquireIsolatedMediaRequestContext(app_context,
« no previous file with comments | « chrome/browser/process_singleton_posix.cc ('k') | chrome/browser/safe_browsing/client_side_detection_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698