OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "components/nacl/renderer/ppb_nacl_private_impl.h" | 5 #include "components/nacl/renderer/ppb_nacl_private_impl.h" |
6 | 6 |
7 #include <numeric> | 7 #include <numeric> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 20 matching lines...) Expand all Loading... |
31 #include "components/nacl/renderer/progress_event.h" | 31 #include "components/nacl/renderer/progress_event.h" |
32 #include "components/nacl/renderer/sandbox_arch.h" | 32 #include "components/nacl/renderer/sandbox_arch.h" |
33 #include "components/nacl/renderer/trusted_plugin_channel.h" | 33 #include "components/nacl/renderer/trusted_plugin_channel.h" |
34 #include "content/public/common/content_client.h" | 34 #include "content/public/common/content_client.h" |
35 #include "content/public/common/content_switches.h" | 35 #include "content/public/common/content_switches.h" |
36 #include "content/public/common/sandbox_init.h" | 36 #include "content/public/common/sandbox_init.h" |
37 #include "content/public/renderer/pepper_plugin_instance.h" | 37 #include "content/public/renderer/pepper_plugin_instance.h" |
38 #include "content/public/renderer/render_thread.h" | 38 #include "content/public/renderer/render_thread.h" |
39 #include "content/public/renderer/render_view.h" | 39 #include "content/public/renderer/render_view.h" |
40 #include "content/public/renderer/renderer_ppapi_host.h" | 40 #include "content/public/renderer/renderer_ppapi_host.h" |
| 41 #include "native_client/src/public/imc_types.h" |
41 #include "net/base/data_url.h" | 42 #include "net/base/data_url.h" |
42 #include "net/base/net_errors.h" | 43 #include "net/base/net_errors.h" |
43 #include "net/http/http_util.h" | 44 #include "net/http/http_util.h" |
44 #include "ppapi/c/pp_bool.h" | 45 #include "ppapi/c/pp_bool.h" |
45 #include "ppapi/c/private/pp_file_handle.h" | 46 #include "ppapi/c/private/pp_file_handle.h" |
46 #include "ppapi/native_client/src/trusted/plugin/nacl_entry_points.h" | |
47 #include "ppapi/shared_impl/ppapi_globals.h" | 47 #include "ppapi/shared_impl/ppapi_globals.h" |
48 #include "ppapi/shared_impl/ppapi_permissions.h" | 48 #include "ppapi/shared_impl/ppapi_permissions.h" |
49 #include "ppapi/shared_impl/ppapi_preferences.h" | 49 #include "ppapi/shared_impl/ppapi_preferences.h" |
50 #include "ppapi/shared_impl/var.h" | 50 #include "ppapi/shared_impl/var.h" |
51 #include "ppapi/shared_impl/var_tracker.h" | 51 #include "ppapi/shared_impl/var_tracker.h" |
52 #include "ppapi/thunk/enter.h" | 52 #include "ppapi/thunk/enter.h" |
53 #include "third_party/WebKit/public/platform/WebURLLoader.h" | 53 #include "third_party/WebKit/public/platform/WebURLLoader.h" |
54 #include "third_party/WebKit/public/web/WebDocument.h" | 54 #include "third_party/WebKit/public/web/WebDocument.h" |
55 #include "third_party/WebKit/public/web/WebElement.h" | 55 #include "third_party/WebKit/public/web/WebElement.h" |
56 #include "third_party/WebKit/public/web/WebLocalFrame.h" | 56 #include "third_party/WebKit/public/web/WebLocalFrame.h" |
(...skipping 1494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1551 &ReportSelLdrStatus | 1551 &ReportSelLdrStatus |
1552 }; | 1552 }; |
1553 | 1553 |
1554 } // namespace | 1554 } // namespace |
1555 | 1555 |
1556 const PPB_NaCl_Private* GetNaClPrivateInterface() { | 1556 const PPB_NaCl_Private* GetNaClPrivateInterface() { |
1557 return &nacl_interface; | 1557 return &nacl_interface; |
1558 } | 1558 } |
1559 | 1559 |
1560 } // namespace nacl | 1560 } // namespace nacl |
OLD | NEW |