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

Side by Side Diff: ppapi/examples/ime/ime.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 5 years 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 #include <stddef.h>
6 #include <stdint.h>
7
5 #include <algorithm> 8 #include <algorithm>
6 #include <string> 9 #include <string>
7 #include <utility> 10 #include <utility>
8 #include <vector> 11 #include <vector>
9 12
10 #include "ppapi/c/dev/ppb_cursor_control_dev.h" 13 #include "ppapi/c/dev/ppb_cursor_control_dev.h"
11 #include "ppapi/c/ppb_console.h" 14 #include "ppapi/c/ppb_console.h"
12 #include "ppapi/cpp/completion_callback.h" 15 #include "ppapi/cpp/completion_callback.h"
13 #include "ppapi/cpp/graphics_2d.h" 16 #include "ppapi/cpp/graphics_2d.h"
14 #include "ppapi/cpp/image_data.h" 17 #include "ppapi/cpp/image_data.h"
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after
725 } 728 }
726 }; 729 };
727 730
728 namespace pp { 731 namespace pp {
729 732
730 Module* CreateModule() { 733 Module* CreateModule() {
731 return new MyModule(); 734 return new MyModule();
732 } 735 }
733 736
734 } // namespace pp 737 } // namespace pp
OLDNEW
« no previous file with comments | « ppapi/examples/gles2_spinning_cube/gles2_spinning_cube.cc ('k') | ppapi/examples/input/pointer_event_input.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698