| OLD | NEW |
| 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/events/event_utils.h" | 5 #include "ui/events/event_utils.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "ui/events/event.h" | |
| 10 #include "ui/gfx/display.h" | 9 #include "ui/gfx/display.h" |
| 11 #include "ui/gfx/screen.h" | 10 #include "ui/gfx/screen.h" |
| 12 | 11 |
| 13 namespace ui { | 12 namespace ui { |
| 14 | 13 |
| 15 namespace { | 14 namespace { |
| 16 int g_custom_event_types = ET_LAST; | 15 int g_custom_event_types = ET_LAST; |
| 17 } // namespace | 16 } // namespace |
| 18 | 17 |
| 19 scoped_ptr<Event> EventFromNative(const base::NativeEvent& native_event) { | 18 scoped_ptr<Event> EventFromNative(const base::NativeEvent& native_event) { |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 const std::vector<gfx::Display>& displays = screen->GetAllDisplays(); | 78 const std::vector<gfx::Display>& displays = screen->GetAllDisplays(); |
| 80 for (std::vector<gfx::Display>::const_iterator it = displays.begin(); | 79 for (std::vector<gfx::Display>::const_iterator it = displays.begin(); |
| 81 it != displays.end(); ++it) { | 80 it != displays.end(); ++it) { |
| 82 if (it->IsInternal()) | 81 if (it->IsInternal()) |
| 83 return it->touch_support(); | 82 return it->touch_support(); |
| 84 } | 83 } |
| 85 return gfx::Display::TOUCH_SUPPORT_UNAVAILABLE; | 84 return gfx::Display::TOUCH_SUPPORT_UNAVAILABLE; |
| 86 } | 85 } |
| 87 | 86 |
| 88 } // namespace ui | 87 } // namespace ui |
| OLD | NEW |