| 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 "content/renderer/pepper/url_response_info_util.h" | 5 #include "content/renderer/pepper/url_response_info_util.h" |
| 6 | 6 |
| 7 #include <stdint.h> |
| 8 |
| 7 #include "base/bind.h" | 9 #include "base/bind.h" |
| 8 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 9 #include "base/location.h" | 11 #include "base/location.h" |
| 10 #include "base/single_thread_task_runner.h" | 12 #include "base/single_thread_task_runner.h" |
| 11 #include "base/thread_task_runner_handle.h" | 13 #include "base/thread_task_runner_handle.h" |
| 12 #include "content/public/renderer/renderer_ppapi_host.h" | 14 #include "content/public/renderer/renderer_ppapi_host.h" |
| 13 #include "content/renderer/pepper/pepper_file_ref_renderer_host.h" | 15 #include "content/renderer/pepper/pepper_file_ref_renderer_host.h" |
| 14 #include "content/renderer/pepper/renderer_ppapi_host_impl.h" | 16 #include "content/renderer/pepper/renderer_ppapi_host_impl.h" |
| 15 #include "ipc/ipc_message.h" | 17 #include "ipc/ipc_message.h" |
| 16 #include "ppapi/proxy/ppapi_messages.h" | 18 #include "ppapi/proxy/ppapi_messages.h" |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 external_path, | 109 external_path, |
| 108 renderer_pending_host_id, | 110 renderer_pending_host_id, |
| 109 callback)); | 111 callback)); |
| 110 } else { | 112 } else { |
| 111 base::ThreadTaskRunnerHandle::Get()->PostTask(FROM_HERE, | 113 base::ThreadTaskRunnerHandle::Get()->PostTask(FROM_HERE, |
| 112 base::Bind(callback, data)); | 114 base::Bind(callback, data)); |
| 113 } | 115 } |
| 114 } | 116 } |
| 115 | 117 |
| 116 } // namespace content | 118 } // namespace content |
| OLD | NEW |