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

Side by Side Diff: chrome/test/data/nacl/extension_mime_handler/ppapi_extension_mime_handler.cc

Issue 1548153002: Switch to standard integer types in chrome/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 <stdint.h>
5 #include <string.h> 6 #include <string.h>
6 7
7 #include "native_client/src/include/nacl_macros.h" 8 #include "native_client/src/include/nacl_macros.h"
8 #include "native_client/src/shared/platform/nacl_check.h" 9 #include "native_client/src/shared/platform/nacl_check.h"
9 10
10 #include "ppapi/c/pp_bool.h" 11 #include "ppapi/c/pp_bool.h"
11 #include "ppapi/c/pp_errors.h" 12 #include "ppapi/c/pp_errors.h"
12 #include "ppapi/c/pp_input_event.h" 13 #include "ppapi/c/pp_input_event.h"
13 #include "ppapi/c/ppb_instance.h" 14 #include "ppapi/c/ppb_instance.h"
14 #include "ppapi/c/ppb_url_loader.h" 15 #include "ppapi/c/ppb_url_loader.h"
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 136
136 137
137 void SetupTests() { 138 void SetupTests() {
138 RegisterTest("TestHandleDocumentLoad", TestHandleDocumentLoad); 139 RegisterTest("TestHandleDocumentLoad", TestHandleDocumentLoad);
139 RegisterTest("TestIsFullFrame", TestIsFullFrame); 140 RegisterTest("TestIsFullFrame", TestIsFullFrame);
140 } 141 }
141 142
142 void SetupPluginInterfaces() { 143 void SetupPluginInterfaces() {
143 RegisterPluginInterface(PPP_INSTANCE_INTERFACE, &ppp_instance_interface); 144 RegisterPluginInterface(PPP_INSTANCE_INTERFACE, &ppp_instance_interface);
144 } 145 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698