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

Side by Side Diff: content/browser/renderer_host/input/input_router_impl.h

Issue 2825853002: Improvements to uses of base::SmallMap (Closed)
Patch Set: Fixes Created 3 years, 8 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map>
10 #include <memory> 11 #include <memory>
11 #include <queue> 12 #include <queue>
12 13
13 #include "base/gtest_prod_util.h" 14 #include "base/gtest_prod_util.h"
14 #include "base/macros.h" 15 #include "base/macros.h"
15 #include "base/time/time.h" 16 #include "base/time/time.h"
16 #include "content/browser/renderer_host/input/gesture_event_queue.h" 17 #include "content/browser/renderer_host/input/gesture_event_queue.h"
17 #include "content/browser/renderer_host/input/input_router.h" 18 #include "content/browser/renderer_host/input/input_router.h"
18 #include "content/browser/renderer_host/input/mouse_wheel_event_queue.h" 19 #include "content/browser/renderer_host/input/mouse_wheel_event_queue.h"
19 #include "content/browser/renderer_host/input/touch_action_filter.h" 20 #include "content/browser/renderer_host/input/touch_action_filter.h"
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 267
267 // Last touch position relative to screen. Used to compute movementX/Y. 268 // Last touch position relative to screen. Used to compute movementX/Y.
268 std::map<int, gfx::Point> global_touch_position_; 269 std::map<int, gfx::Point> global_touch_position_;
269 270
270 DISALLOW_COPY_AND_ASSIGN(InputRouterImpl); 271 DISALLOW_COPY_AND_ASSIGN(InputRouterImpl);
271 }; 272 };
272 273
273 } // namespace content 274 } // namespace content
274 275
275 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_ 276 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698