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

Side by Side Diff: ui/views/corewm/compound_event_filter.cc

Issue 16667019: Rename base/hash_tables to base/containers/hash_tables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/views/accessible_pane_view.h ('k') | webkit/browser/appcache/appcache_backend_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/views/corewm/compound_event_filter.h" 5 #include "ui/views/corewm/compound_event_filter.h"
6 6
7 #include "base/hash_tables.h" 7 #include "base/containers/hash_tables.h"
8 #include "ui/aura/client/activation_client.h" 8 #include "ui/aura/client/activation_client.h"
9 #include "ui/aura/client/cursor_client.h" 9 #include "ui/aura/client/cursor_client.h"
10 #include "ui/aura/client/drag_drop_client.h" 10 #include "ui/aura/client/drag_drop_client.h"
11 #include "ui/aura/env.h" 11 #include "ui/aura/env.h"
12 #include "ui/aura/focus_manager.h" 12 #include "ui/aura/focus_manager.h"
13 #include "ui/aura/root_window.h" 13 #include "ui/aura/root_window.h"
14 #include "ui/aura/window_delegate.h" 14 #include "ui/aura/window_delegate.h"
15 #include "ui/aura/window_tracker.h" 15 #include "ui/aura/window_tracker.h"
16 #include "ui/base/events/event.h" 16 #include "ui/base/events/event.h"
17 #include "ui/base/hit_test.h" 17 #include "ui/base/hit_test.h"
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 if (handlers_.might_have_observers()) { 254 if (handlers_.might_have_observers()) {
255 ObserverListBase<ui::EventHandler>::Iterator it(handlers_); 255 ObserverListBase<ui::EventHandler>::Iterator it(handlers_);
256 ui::EventHandler* handler; 256 ui::EventHandler* handler;
257 while (!event->stopped_propagation() && (handler = it.GetNext()) != NULL) 257 while (!event->stopped_propagation() && (handler = it.GetNext()) != NULL)
258 handler->OnGestureEvent(event); 258 handler->OnGestureEvent(event);
259 } 259 }
260 } 260 }
261 261
262 } // namespace corewm 262 } // namespace corewm
263 } // namespace views 263 } // namespace views
OLDNEW
« no previous file with comments | « ui/views/accessible_pane_view.h ('k') | webkit/browser/appcache/appcache_backend_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698