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

Unified Diff: services/ui/ws/modal_window_controller.cc

Issue 2229273003: services: 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 | « services/shell/runner/init.cc ('k') | services/ui/ws/server_window.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/ws/modal_window_controller.cc
diff --git a/services/ui/ws/modal_window_controller.cc b/services/ui/ws/modal_window_controller.cc
index 07c2e11ab9a22d91c1172e1f9d01ad6bc5b03d18..dcb25b5050012f8463cce4d8b55f6e709ff7af08 100644
--- a/services/ui/ws/modal_window_controller.cc
+++ b/services/ui/ws/modal_window_controller.cc
@@ -45,7 +45,7 @@ ModalWindowController::~ModalWindowController() {
void ModalWindowController::AddSystemModalWindow(ServerWindow* window) {
DCHECK(window);
- DCHECK(!ContainsValue(system_modal_windows_, window));
+ DCHECK(!base::ContainsValue(system_modal_windows_, window));
window->SetModal();
system_modal_windows_.push_back(window);
« no previous file with comments | « services/shell/runner/init.cc ('k') | services/ui/ws/server_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698