| OLD | NEW |
| 1 // Copyright (c) 2011 The Native Client Authors. All rights reserved. | 1 // Copyright (c) 2011 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 <stdint.h> | 5 #include <stdint.h> |
| 6 #include <stdlib.h> | 6 #include <stdlib.h> |
| 7 | 7 |
| 8 #include <sstream> | 8 #include <sstream> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <queue> | 10 #include <queue> |
| 11 | 11 |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 virtual pp::Instance* CreateInstance(PP_Instance instance) { | 241 virtual pp::Instance* CreateInstance(PP_Instance instance) { |
| 242 return new MyInstance(instance); | 242 return new MyInstance(instance); |
| 243 } | 243 } |
| 244 }; | 244 }; |
| 245 | 245 |
| 246 namespace pp { | 246 namespace pp { |
| 247 Module* CreateModule() { | 247 Module* CreateModule() { |
| 248 return new MyModule(); | 248 return new MyModule(); |
| 249 } | 249 } |
| 250 } | 250 } |
| OLD | NEW |