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

Side by Side Diff: ppapi/examples/gamepad/gamepad.cc

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
« no previous file with comments | « ppapi/examples/font/simple_font.cc ('k') | ppapi/examples/gles2/gles2.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include <stdarg.h>
6 #include <stddef.h>
7 #include <stdint.h>
8 #include <stdio.h>
5 #include <algorithm> 9 #include <algorithm>
6 #include <cmath> 10 #include <cmath>
7 #include <stdarg.h>
8 #include <stdio.h>
9 11
10 #include "ppapi/c/ppb_gamepad.h" 12 #include "ppapi/c/ppb_gamepad.h"
11 #include "ppapi/c/ppb_input_event.h" 13 #include "ppapi/c/ppb_input_event.h"
12 #include "ppapi/cpp/completion_callback.h" 14 #include "ppapi/cpp/completion_callback.h"
13 #include "ppapi/cpp/graphics_2d.h" 15 #include "ppapi/cpp/graphics_2d.h"
14 #include "ppapi/cpp/image_data.h" 16 #include "ppapi/cpp/image_data.h"
15 #include "ppapi/cpp/input_event.h" 17 #include "ppapi/cpp/input_event.h"
16 #include "ppapi/cpp/instance.h" 18 #include "ppapi/cpp/instance.h"
17 #include "ppapi/cpp/logging.h" 19 #include "ppapi/cpp/logging.h"
18 #include "ppapi/cpp/module.h" 20 #include "ppapi/cpp/module.h"
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 }; 142 };
141 143
142 namespace pp { 144 namespace pp {
143 145
144 // Factory function for your specialization of the Module object. 146 // Factory function for your specialization of the Module object.
145 Module* CreateModule() { 147 Module* CreateModule() {
146 return new MyModule(); 148 return new MyModule();
147 } 149 }
148 150
149 } // namespace pp 151 } // namespace pp
OLDNEW
« no previous file with comments | « ppapi/examples/font/simple_font.cc ('k') | ppapi/examples/gles2/gles2.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698