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

Side by Side Diff: ui/aura/event.h

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 #ifndef AURA_EVENT_H_ 5 #ifndef UI_AURA_EVENT_H_
6 #define AURA_EVENT_H_ 6 #define UI_AURA_EVENT_H_
7 #pragma once 7 #pragma once
8 8
9 #include "aura/aura_export.h"
10 #include "base/basictypes.h" 9 #include "base/basictypes.h"
11 #include "base/time.h" 10 #include "base/time.h"
11 #include "ui/aura/aura_export.h"
12 #include "ui/base/events.h" 12 #include "ui/base/events.h"
13 #include "ui/base/keycodes/keyboard_codes.h" 13 #include "ui/base/keycodes/keyboard_codes.h"
14 #include "ui/gfx/point.h" 14 #include "ui/gfx/point.h"
15 15
16 #if defined(USE_X11) 16 #if defined(USE_X11)
17 typedef union _XEvent XEvent; 17 typedef union _XEvent XEvent;
18 #endif 18 #endif
19 19
20 namespace aura { 20 namespace aura {
21 21
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 int flags); 101 int flags);
102 102
103 ui::KeyboardCode key_code() const { return key_code_; } 103 ui::KeyboardCode key_code() const { return key_code_; }
104 104
105 private: 105 private:
106 ui::KeyboardCode key_code_; 106 ui::KeyboardCode key_code_;
107 }; 107 };
108 108
109 } // namespace aura 109 } // namespace aura
110 110
111 #endif // AURA_EVENT_H_ 111 #endif // UI_AURA_EVENT_H_
OLDNEW
« ui/aura/aura.gyp ('K') | « ui/aura/desktop_host_win.cc ('k') | ui/aura/event.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698