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

Side by Side Diff: ppapi/examples/crxfs/crxfs.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) 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 #include <stddef.h>
6 #include <stdint.h>
7
5 #include <sstream> 8 #include <sstream>
6 9
7 #include "ppapi/c/ppb_file_io.h" 10 #include "ppapi/c/ppb_file_io.h"
8 #include "ppapi/cpp/file_io.h" 11 #include "ppapi/cpp/file_io.h"
9 #include "ppapi/cpp/file_ref.h" 12 #include "ppapi/cpp/file_ref.h"
10 #include "ppapi/cpp/instance.h" 13 #include "ppapi/cpp/instance.h"
11 #include "ppapi/cpp/module.h" 14 #include "ppapi/cpp/module.h"
12 #include "ppapi/cpp/private/isolated_file_system_private.h" 15 #include "ppapi/cpp/private/isolated_file_system_private.h"
13 #include "ppapi/utility/completion_callback_factory.h" 16 #include "ppapi/utility/completion_callback_factory.h"
14 17
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 142
140 namespace pp { 143 namespace pp {
141 144
142 // Factory function for your specialization of the Module object. 145 // Factory function for your specialization of the Module object.
143 Module* CreateModule() { 146 Module* CreateModule() {
144 return new MyModule(); 147 return new MyModule();
145 } 148 }
146 149
147 } // namespace pp 150 } // namespace pp
148 151
OLDNEW
« no previous file with comments | « ppapi/examples/compositor/compositor.cc ('k') | ppapi/examples/enumerate_devices/enumerate_devices.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698