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 #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 Loading... |
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 |
OLD | NEW |