Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Side by Side Diff: ppapi/proxy/pdf_resource.cc

Issue 1548813002: Switch to standard integer types in ppapi/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ppapi/proxy/pdf_resource.h ('k') | ppapi/proxy/platform_verification_private_resource.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « ppapi/proxy/pdf_resource.h ('k') | ppapi/proxy/platform_verification_private_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698