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

Side by Side Diff: ui/events/events_stub.cc

Issue 392013005: [#1] Delete reduntdant 19 header files in ui/gfx (8 of 19 by this) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sorted includes Created 6 years, 5 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 #include "base/logging.h" 5 #include "base/logging.h"
6 #include "base/time/time.h" 6 #include "base/time/time.h"
7 #include "build/build_config.h" 7 #include "build/build_config.h"
8 #include "ui/events/event_utils.h" 8 #include "ui/events/event_utils.h"
9 #include "ui/gfx/point.h" 9 #include "ui/gfx/geometry/point.h"
10 #include "ui/gfx/vector2d.h" 10 #include "ui/gfx/geometry/vector2d.h"
11 11
12 namespace ui { 12 namespace ui {
13 13
14 // Stub implementations of platform-specific methods in events_util.h, built 14 // Stub implementations of platform-specific methods in events_util.h, built
15 // on platform sthat currently do not have a complete implementation of events. 15 // on platform sthat currently do not have a complete implementation of events.
16 16
17 void UpdateDeviceList() { 17 void UpdateDeviceList() {
18 NOTIMPLEMENTED(); 18 NOTIMPLEMENTED();
19 } 19 }
20 20
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 NOTIMPLEMENTED(); 134 NOTIMPLEMENTED();
135 return ""; 135 return "";
136 } 136 }
137 137
138 uint32 PlatformKeycodeFromNative(const base::NativeEvent& native_event) { 138 uint32 PlatformKeycodeFromNative(const base::NativeEvent& native_event) {
139 NOTIMPLEMENTED(); 139 NOTIMPLEMENTED();
140 return 0; 140 return 0;
141 } 141 }
142 142
143 } // namespace ui 143 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698