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

Side by Side Diff: ui/base/touch/touch_factory.cc

Issue 12473004: src/: Update the remaining include paths of string_split.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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/base/text/text_elider.cc ('k') | ui/base/x/events_x.cc » ('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/base/touch/touch_factory.h" 5 #include "ui/base/touch/touch_factory.h"
6 6
7 #include <X11/cursorfont.h> 7 #include <X11/cursorfont.h>
8 #include <X11/extensions/XInput.h> 8 #include <X11/extensions/XInput.h>
9 #include <X11/extensions/XInput2.h> 9 #include <X11/extensions/XInput2.h>
10 #include <X11/extensions/XIproto.h> 10 #include <X11/extensions/XIproto.h>
11 11
12 #include "base/basictypes.h" 12 #include "base/basictypes.h"
13 #include "base/command_line.h" 13 #include "base/command_line.h"
14 #include "base/compiler_specific.h" 14 #include "base/compiler_specific.h"
15 #include "base/logging.h" 15 #include "base/logging.h"
16 #include "base/memory/singleton.h" 16 #include "base/memory/singleton.h"
17 #include "base/message_loop.h" 17 #include "base/message_loop.h"
18 #include "base/string_number_conversions.h" 18 #include "base/string_number_conversions.h"
19 #include "base/string_split.h" 19 #include "base/strings/string_split.h"
20 #include "ui/base/ui_base_switches.h" 20 #include "ui/base/ui_base_switches.h"
21 #include "ui/base/x/device_list_cache_x.h" 21 #include "ui/base/x/device_list_cache_x.h"
22 #include "ui/base/x/x11_util.h" 22 #include "ui/base/x/x11_util.h"
23 23
24 namespace ui { 24 namespace ui {
25 25
26 TouchFactory::TouchFactory() 26 TouchFactory::TouchFactory()
27 : pointer_device_lookup_(), 27 : pointer_device_lookup_(),
28 touch_device_available_(false), 28 touch_device_available_(false),
29 touch_events_disabled_(false), 29 touch_events_disabled_(false),
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 void TouchFactory::SetSlotUsed(int slot, bool used) { 267 void TouchFactory::SetSlotUsed(int slot, bool used) {
268 CHECK_LT(slot, kMaxTouchPoints); 268 CHECK_LT(slot, kMaxTouchPoints);
269 slots_used_[slot] = used; 269 slots_used_[slot] = used;
270 } 270 }
271 271
272 bool TouchFactory::IsTouchDevicePresent() { 272 bool TouchFactory::IsTouchDevicePresent() {
273 return !touch_events_disabled_ && touch_device_available_; 273 return !touch_events_disabled_ && touch_device_available_;
274 } 274 }
275 275
276 } // namespace ui 276 } // namespace ui
OLDNEW
« no previous file with comments | « ui/base/text/text_elider.cc ('k') | ui/base/x/events_x.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698