OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 "ppapi/proxy/pdf_resource.h" | 5 #include "ppapi/proxy/pdf_resource.h" |
6 | 6 |
| 7 #include <stddef.h> |
| 8 #include <stdint.h> |
7 #include <stdlib.h> | 9 #include <stdlib.h> |
8 #include <string.h> | 10 #include <string.h> |
9 | 11 |
10 #include "base/command_line.h" | 12 #include "base/command_line.h" |
11 #include "base/metrics/histogram.h" | 13 #include "base/metrics/histogram.h" |
12 #include "base/strings/utf_string_conversions.h" | 14 #include "base/strings/utf_string_conversions.h" |
13 #include "gin/v8_initializer.h" | 15 #include "gin/v8_initializer.h" |
14 #include "ppapi/c/pp_errors.h" | 16 #include "ppapi/c/pp_errors.h" |
15 #include "ppapi/c/private/ppb_pdf.h" | 17 #include "ppapi/c/private/ppb_pdf.h" |
16 #include "ppapi/proxy/ppapi_messages.h" | 18 #include "ppapi/proxy/ppapi_messages.h" |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 void PDFResource::GetV8ExternalSnapshotData(const char** natives_data_out, | 163 void PDFResource::GetV8ExternalSnapshotData(const char** natives_data_out, |
162 int* natives_size_out, | 164 int* natives_size_out, |
163 const char** snapshot_data_out, | 165 const char** snapshot_data_out, |
164 int* snapshot_size_out) { | 166 int* snapshot_size_out) { |
165 gin::V8Initializer::GetV8ExternalSnapshotData( | 167 gin::V8Initializer::GetV8ExternalSnapshotData( |
166 natives_data_out, natives_size_out, snapshot_data_out, snapshot_size_out); | 168 natives_data_out, natives_size_out, snapshot_data_out, snapshot_size_out); |
167 } | 169 } |
168 | 170 |
169 } // namespace proxy | 171 } // namespace proxy |
170 } // namespace ppapi | 172 } // namespace ppapi |
OLD | NEW |