| OLD | NEW |
| 1 // -*- c++ -*- | 1 // -*- c++ -*- |
| 2 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 // Use of this source code is governed by a BSD-style license that can be | 3 // Use of this source code is governed by a BSD-style license that can be |
| 4 // found in the LICENSE file. | 4 // found in the LICENSE file. |
| 5 | 5 |
| 6 // The portable representation of an instance and root scriptable object. | 6 // The portable representation of an instance and root scriptable object. |
| 7 // The PPAPI version of the plugin instantiates a subclass of this class. | 7 // The PPAPI version of the plugin instantiates a subclass of this class. |
| 8 | 8 |
| 9 #ifndef COMPONENTS_NACL_RENDERER_PLUGIN_PLUGIN_H_ | 9 #ifndef COMPONENTS_NACL_RENDERER_PLUGIN_PLUGIN_H_ |
| 10 #define COMPONENTS_NACL_RENDERER_PLUGIN_PLUGIN_H_ | 10 #define COMPONENTS_NACL_RENDERER_PLUGIN_PLUGIN_H_ |
| 11 | 11 |
| 12 #include <stdint.h> |
| 12 #include <stdio.h> | 13 #include <stdio.h> |
| 13 | 14 |
| 14 #include <string> | 15 #include <string> |
| 15 | 16 |
| 17 #include "base/macros.h" |
| 16 #include "components/nacl/renderer/plugin/nacl_subprocess.h" | 18 #include "components/nacl/renderer/plugin/nacl_subprocess.h" |
| 17 #include "components/nacl/renderer/plugin/pnacl_coordinator.h" | 19 #include "components/nacl/renderer/plugin/pnacl_coordinator.h" |
| 18 #include "components/nacl/renderer/plugin/service_runtime.h" | 20 #include "components/nacl/renderer/plugin/service_runtime.h" |
| 19 #include "components/nacl/renderer/plugin/utility.h" | 21 #include "components/nacl/renderer/plugin/utility.h" |
| 20 #include "components/nacl/renderer/ppb_nacl_private.h" | 22 #include "components/nacl/renderer/ppb_nacl_private.h" |
| 21 #include "native_client/src/include/nacl_macros.h" | 23 #include "native_client/src/include/nacl_macros.h" |
| 22 #include "native_client/src/include/nacl_scoped_ptr.h" | 24 #include "native_client/src/include/nacl_scoped_ptr.h" |
| 23 #include "ppapi/cpp/instance.h" | 25 #include "ppapi/cpp/instance.h" |
| 24 #include "ppapi/cpp/private/uma_private.h" | 26 #include "ppapi/cpp/private/uma_private.h" |
| 25 #include "ppapi/cpp/url_loader.h" | 27 #include "ppapi/cpp/url_loader.h" |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 | 163 |
| 162 PP_NaClFileInfo nexe_file_info_; | 164 PP_NaClFileInfo nexe_file_info_; |
| 163 | 165 |
| 164 const PPB_NaCl_Private* nacl_interface_; | 166 const PPB_NaCl_Private* nacl_interface_; |
| 165 pp::UMAPrivate uma_interface_; | 167 pp::UMAPrivate uma_interface_; |
| 166 }; | 168 }; |
| 167 | 169 |
| 168 } // namespace plugin | 170 } // namespace plugin |
| 169 | 171 |
| 170 #endif // COMPONENTS_NACL_RENDERER_PLUGIN_PLUGIN_H_ | 172 #endif // COMPONENTS_NACL_RENDERER_PLUGIN_PLUGIN_H_ |
| OLD | NEW |