| 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 "ppapi/native_client/src/trusted/plugin/pnacl_coordinator.h" | 5 #include "ppapi/native_client/src/trusted/plugin/pnacl_coordinator.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <sstream> |
| 8 #include <utility> | 9 #include <utility> |
| 9 | 10 |
| 10 #include "native_client/src/include/portability_io.h" | 11 #include "native_client/src/include/portability_io.h" |
| 11 #include "native_client/src/shared/platform/nacl_check.h" | 12 #include "native_client/src/shared/platform/nacl_check.h" |
| 12 #include "native_client/src/trusted/service_runtime/include/sys/stat.h" | 13 #include "native_client/src/trusted/service_runtime/include/sys/stat.h" |
| 13 | 14 |
| 14 #include "ppapi/c/pp_bool.h" | 15 #include "ppapi/c/pp_bool.h" |
| 15 #include "ppapi/c/pp_errors.h" | 16 #include "ppapi/c/pp_errors.h" |
| 16 #include "ppapi/c/private/ppb_uma_private.h" | 17 #include "ppapi/c/private/ppb_uma_private.h" |
| 17 | 18 |
| (...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 invalid_desc_wrapper_.get(), | 449 invalid_desc_wrapper_.get(), |
| 449 &error_info_, | 450 &error_info_, |
| 450 resources_.get(), | 451 resources_.get(), |
| 451 &pnacl_options_, | 452 &pnacl_options_, |
| 452 architecture_attributes_, | 453 architecture_attributes_, |
| 453 this, | 454 this, |
| 454 plugin_); | 455 plugin_); |
| 455 } | 456 } |
| 456 | 457 |
| 457 } // namespace plugin | 458 } // namespace plugin |
| OLD | NEW |