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

Side by Side Diff: views/events/event_aura.cc

Issue 7886042: Move Aura to UI subdir. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 3 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "views/events/event.h" 5 #include "views/events/event.h"
6 6
7 #include "aura/event.h"
8 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "ui/aura/event.h"
9 9
10 namespace views { 10 namespace views {
11 11
12 namespace { 12 namespace {
13 13
14 int GetKeyStateFlags() { 14 int GetKeyStateFlags() {
15 NOTIMPLEMENTED(); 15 NOTIMPLEMENTED();
16 return 0; 16 return 0;
17 } 17 }
18 18
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 122
123 MouseWheelEvent::MouseWheelEvent(NativeEvent2 native_event_2, 123 MouseWheelEvent::MouseWheelEvent(NativeEvent2 native_event_2,
124 FromNativeEvent2 from_native) 124 FromNativeEvent2 from_native)
125 : MouseEvent(native_event_2, from_native) { 125 : MouseEvent(native_event_2, from_native) {
126 // No one should ever call this on Windows. 126 // No one should ever call this on Windows.
127 // TODO(msw): remove once we rid views of Gtk/Gdk. 127 // TODO(msw): remove once we rid views of Gtk/Gdk.
128 NOTREACHED(); 128 NOTREACHED();
129 } 129 }
130 130
131 } // namespace views 131 } // namespace views
OLDNEW
« ui/aura/aura.gyp ('K') | « views/aura_desktop/aura_desktop_main.cc ('k') | views/views.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698