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

Side by Side Diff: ppapi/shared_impl/ppb_input_event_shared.h

Issue 1548813002: Switch to standard integer types in ppapi/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 4 years, 12 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
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « ppapi/shared_impl/ppb_graphics_3d_shared.cc ('k') | ppapi/shared_impl/ppb_input_event_shared.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698