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 #ifndef PPAPI_SHARED_IMPL_PPB_INPUT_EVENT_SHARED_H_ | 5 #ifndef PPAPI_SHARED_IMPL_PPB_INPUT_EVENT_SHARED_H_ |
6 #define PPAPI_SHARED_IMPL_PPB_INPUT_EVENT_SHARED_H_ | 6 #define PPAPI_SHARED_IMPL_PPB_INPUT_EVENT_SHARED_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include <string> | 10 #include <string> |
9 #include <vector> | 11 #include <vector> |
10 | 12 |
11 #include "base/basictypes.h" | |
12 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 14 #include "base/macros.h" |
13 #include "ppapi/c/ppb_input_event.h" | 15 #include "ppapi/c/ppb_input_event.h" |
14 #include "ppapi/shared_impl/resource.h" | 16 #include "ppapi/shared_impl/resource.h" |
15 #include "ppapi/thunk/ppb_input_event_api.h" | 17 #include "ppapi/thunk/ppb_input_event_api.h" |
16 | 18 |
17 namespace ppapi { | 19 namespace ppapi { |
18 | 20 |
19 // IF YOU ADD STUFF TO THIS CLASS | 21 // IF YOU ADD STUFF TO THIS CLASS |
20 // ============================== | 22 // ============================== |
21 // Be sure to add it to the STRUCT_TRAITS at the top of ppapi_messages.h | 23 // Be sure to add it to the STRUCT_TRAITS at the top of ppapi_messages.h |
22 struct PPAPI_SHARED_EXPORT InputEventData { | 24 struct PPAPI_SHARED_EXPORT InputEventData { |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 | 142 |
141 private: | 143 private: |
142 InputEventData data_; | 144 InputEventData data_; |
143 | 145 |
144 DISALLOW_IMPLICIT_CONSTRUCTORS(PPB_InputEvent_Shared); | 146 DISALLOW_IMPLICIT_CONSTRUCTORS(PPB_InputEvent_Shared); |
145 }; | 147 }; |
146 | 148 |
147 } // namespace ppapi | 149 } // namespace ppapi |
148 | 150 |
149 #endif // PPAPI_SHARED_IMPL_PPB_INPUT_EVENT_SHARED_H_ | 151 #endif // PPAPI_SHARED_IMPL_PPB_INPUT_EVENT_SHARED_H_ |
OLD | NEW |