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

Unified Diff: ppapi/proxy/file_system_resource.cc

Issue 2229403002: ppapi: 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/file_system_resource.cc
diff --git a/ppapi/proxy/file_system_resource.cc b/ppapi/proxy/file_system_resource.cc
index 0be0ea52e5e30504ec32ad121dcca9bdb82e6656..37b2cc7275c4629de598ebf80425f5d145633d60 100644
--- a/ppapi/proxy/file_system_resource.cc
+++ b/ppapi/proxy/file_system_resource.cc
@@ -95,12 +95,12 @@ PP_FileSystemType FileSystemResource::GetType() {
}
void FileSystemResource::OpenQuotaFile(PP_Resource file_io) {
- DCHECK(!ContainsKey(files_, file_io));
+ DCHECK(!base::ContainsKey(files_, file_io));
files_.insert(file_io);
}
void FileSystemResource::CloseQuotaFile(PP_Resource file_io) {
- DCHECK(ContainsKey(files_, file_io));
+ DCHECK(base::ContainsKey(files_, file_io));
files_.erase(file_io);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698