| OLD | NEW |
| 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 /// This project is for use with the testing framework | 5 /// This project is for use with the testing framework |
| 6 /// of the Visual Studio Add-in. | 6 /// of the Visual Studio Add-in. |
| 7 /// Note that the PPAPI and NaCl configurations do not exist. These are added | 7 /// Note that the PPAPI and NaCl configurations do not exist. These are added |
| 8 /// during testing time so that the most up-to-date settings are used. | 8 /// during testing time so that the most up-to-date settings are used. |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 return new NaClProjectInstance(instance); | 56 return new NaClProjectInstance(instance); |
| 57 } | 57 } |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 namespace pp { | 60 namespace pp { |
| 61 Module* CreateModule() { | 61 Module* CreateModule() { |
| 62 return new NaClProjectModule(); | 62 return new NaClProjectModule(); |
| 63 } | 63 } |
| 64 } // namespace pp | 64 } // namespace pp |
| 65 | 65 |
| OLD | NEW |