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

Unified Diff: ui/display/chromeos/x11/native_display_delegate_x11.cc

Issue 2230183002: ui: 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 | « ui/chromeos/ime/candidate_window_view.cc ('k') | ui/events/gestures/gesture_recognizer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/display/chromeos/x11/native_display_delegate_x11.cc
diff --git a/ui/display/chromeos/x11/native_display_delegate_x11.cc b/ui/display/chromeos/x11/native_display_delegate_x11.cc
index 81dfcfa7781af50338b6bc27e4218c379e5a54df..614ec9b3db55018ffab35412d90bd6e33866e61c 100644
--- a/ui/display/chromeos/x11/native_display_delegate_x11.cc
+++ b/ui/display/chromeos/x11/native_display_delegate_x11.cc
@@ -115,7 +115,7 @@ NativeDisplayDelegateX11::~NativeDisplayDelegateX11() {
platform_event_dispatcher_.get());
}
- STLDeleteContainerPairSecondPointers(modes_.begin(), modes_.end());
+ base::STLDeleteContainerPairSecondPointers(modes_.begin(), modes_.end());
}
void NativeDisplayDelegateX11::Initialize() {
@@ -285,7 +285,7 @@ void NativeDisplayDelegateX11::RemoveObserver(NativeDisplayObserver* observer) {
void NativeDisplayDelegateX11::InitModes() {
CHECK(screen_) << "Server not grabbed";
- STLDeleteContainerPairSecondPointers(modes_.begin(), modes_.end());
+ base::STLDeleteContainerPairSecondPointers(modes_.begin(), modes_.end());
modes_.clear();
for (int i = 0; i < screen_->nmode; ++i) {
« no previous file with comments | « ui/chromeos/ime/candidate_window_view.cc ('k') | ui/events/gestures/gesture_recognizer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698