| 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 #include <algorithm> |
| 5 #include <string> | 6 #include <string> |
| 6 #include <utility> | 7 #include <utility> |
| 7 #include <vector> | 8 #include <vector> |
| 8 | 9 |
| 9 #include "ppapi/c/dev/ppb_cursor_control_dev.h" | 10 #include "ppapi/c/dev/ppb_cursor_control_dev.h" |
| 10 #include "ppapi/c/ppb_console.h" | 11 #include "ppapi/c/ppb_console.h" |
| 11 #include "ppapi/cpp/completion_callback.h" | 12 #include "ppapi/cpp/completion_callback.h" |
| 12 #include "ppapi/cpp/dev/font_dev.h" | 13 #include "ppapi/cpp/dev/font_dev.h" |
| 13 #include "ppapi/cpp/graphics_2d.h" | 14 #include "ppapi/cpp/graphics_2d.h" |
| 14 #include "ppapi/cpp/image_data.h" | 15 #include "ppapi/cpp/image_data.h" |
| (...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 723 } | 724 } |
| 724 }; | 725 }; |
| 725 | 726 |
| 726 namespace pp { | 727 namespace pp { |
| 727 | 728 |
| 728 Module* CreateModule() { | 729 Module* CreateModule() { |
| 729 return new MyModule(); | 730 return new MyModule(); |
| 730 } | 731 } |
| 731 | 732 |
| 732 } // namespace pp | 733 } // namespace pp |
| OLD | NEW |