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

Unified Diff: content/renderer/android/synchronous_compositor_filter.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
« no previous file with comments | « content/public/test/test_navigation_observer.cc ('k') | content/renderer/gpu/frame_swap_message_queue.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/android/synchronous_compositor_filter.cc
diff --git a/content/renderer/android/synchronous_compositor_filter.cc b/content/renderer/android/synchronous_compositor_filter.cc
index 3dbadcc1ccb4a2787afd5dd9a19bdd5b28c13274..dc96477782b18b866568cfb5d26faa6c22dc5795 100644
--- a/content/renderer/android/synchronous_compositor_filter.cc
+++ b/content/renderer/android/synchronous_compositor_filter.cc
@@ -219,12 +219,12 @@ void SynchronousCompositorFilter::DidAddSynchronousHandlerProxy(
void SynchronousCompositorFilter::DidRemoveSynchronousHandlerProxy(
int routing_id) {
DCHECK(compositor_task_runner_->BelongsToCurrentThread());
- if (ContainsKey(sync_compositor_map_, routing_id)) {
+ if (base::ContainsKey(sync_compositor_map_, routing_id)) {
DCHECK(compositor_task_runner_->BelongsToCurrentThread());
DCHECK(sync_compositor_map_.contains(routing_id));
sync_compositor_map_.erase(routing_id);
}
- if (ContainsKey(synchronous_input_handler_proxy_map_, routing_id))
+ if (base::ContainsKey(synchronous_input_handler_proxy_map_, routing_id))
synchronous_input_handler_proxy_map_.erase(routing_id);
}
« no previous file with comments | « content/public/test/test_navigation_observer.cc ('k') | content/renderer/gpu/frame_swap_message_queue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698