| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef UI_V2_PUBLIC_EVENT_H_ | |
| 6 #define UI_V2_PUBLIC_EVENT_H_ | |
| 7 | |
| 8 #include "base/basictypes.h" | |
| 9 #include "ui/v2/public/v2_export.h" | |
| 10 | |
| 11 namespace v2 { | |
| 12 | |
| 13 enum V2_EXPORT EventType { | |
| 14 ET_NONE | |
| 15 }; | |
| 16 | |
| 17 class V2_EXPORT Event { | |
| 18 public: | |
| 19 Event(); | |
| 20 ~Event(); | |
| 21 | |
| 22 EventType type() const { return type_; }; | |
| 23 | |
| 24 private: | |
| 25 EventType type_; | |
| 26 | |
| 27 DISALLOW_COPY_AND_ASSIGN(Event); | |
| 28 }; | |
| 29 | |
| 30 } // namespace v2 | |
| 31 | |
| 32 #endif // UI_V2_PUBLIC_EVENT_H_ | |
| OLD | NEW |