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

Unified Diff: chrome/browser/extensions/updater/extension_updater.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/extensions/updater/extension_updater.cc
diff --git a/chrome/browser/extensions/updater/extension_updater.cc b/chrome/browser/extensions/updater/extension_updater.cc
index 63d7b38342883694da29c96eeb5886ac611976ff..45ef75814cea3c3278c8bb04a6a7e8fd1923916d 100644
--- a/chrome/browser/extensions/updater/extension_updater.cc
+++ b/chrome/browser/extensions/updater/extension_updater.cc
@@ -591,7 +591,7 @@ void ExtensionUpdater::NotifyStarted() {
}
void ExtensionUpdater::NotifyIfFinished(int request_id) {
- DCHECK(ContainsKey(requests_in_progress_, request_id));
+ DCHECK(base::ContainsKey(requests_in_progress_, request_id));
const InProgressCheck& request = requests_in_progress_[request_id];
if (request.in_progress_ids_.empty()) {
VLOG(2) << "Finished update check " << request_id;

Powered by Google App Engine
This is Rietveld 408576698