OLD | NEW |
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 #ifndef PPAPI_CPP_EXTENSIONS_EVENT_BASE_H_ | 5 #ifndef PPAPI_CPP_EXTENSIONS_EVENT_BASE_H_ |
6 #define PPAPI_CPP_EXTENSIONS_EVENT_BASE_H_ | 6 #define PPAPI_CPP_EXTENSIONS_EVENT_BASE_H_ |
7 | 7 |
8 #include "ppapi/c/extensions/dev/ppb_events_dev.h" | 8 #include "ppapi/c/extensions/dev/ppb_ext_events_dev.h" |
9 #include "ppapi/c/pp_macros.h" | 9 #include "ppapi/c/pp_macros.h" |
10 #include "ppapi/c/pp_stdint.h" | 10 #include "ppapi/c/pp_stdint.h" |
11 #include "ppapi/c/pp_var.h" | 11 #include "ppapi/c/pp_var.h" |
12 #include "ppapi/cpp/extensions/from_var_converter.h" | 12 #include "ppapi/cpp/extensions/from_var_converter.h" |
13 #include "ppapi/cpp/instance_handle.h" | 13 #include "ppapi/cpp/instance_handle.h" |
14 #include "ppapi/cpp/logging.h" | 14 #include "ppapi/cpp/logging.h" |
15 | 15 |
16 namespace pp { | 16 namespace pp { |
17 namespace ext { | 17 namespace ext { |
18 namespace internal { | 18 namespace internal { |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 EventBase3(const EventBase3<kCreatePPEventListener3, A, B, C>&); | 223 EventBase3(const EventBase3<kCreatePPEventListener3, A, B, C>&); |
224 EventBase3<kCreatePPEventListener3, A, B, C>& operator=( | 224 EventBase3<kCreatePPEventListener3, A, B, C>& operator=( |
225 const EventBase3<kCreatePPEventListener3, A, B, C>&); | 225 const EventBase3<kCreatePPEventListener3, A, B, C>&); |
226 }; | 226 }; |
227 | 227 |
228 } // namespace internal | 228 } // namespace internal |
229 } // namespace ext | 229 } // namespace ext |
230 } // namespace pp | 230 } // namespace pp |
231 | 231 |
232 #endif // PPAPI_CPP_EXTENSIONS_EVENT_BASE_H_ | 232 #endif // PPAPI_CPP_EXTENSIONS_EVENT_BASE_H_ |
OLD | NEW |