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

Side by Side Diff: chrome/test/data/nacl/crash/ppapi_crash_in_callback.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 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 <stdint.h>
6
5 #include "native_client/src/shared/platform/nacl_check.h" 7 #include "native_client/src/shared/platform/nacl_check.h"
6 #include "ppapi/c/pp_errors.h" 8 #include "ppapi/c/pp_errors.h"
7 #include "ppapi/c/ppb_core.h" 9 #include "ppapi/c/ppb_core.h"
8 #include "ppapi/native_client/tests/ppapi_test_lib/get_browser_interface.h" 10 #include "ppapi/native_client/tests/ppapi_test_lib/get_browser_interface.h"
9 #include "ppapi/native_client/tests/ppapi_test_lib/test_interface.h" 11 #include "ppapi/native_client/tests/ppapi_test_lib/test_interface.h"
10 12
11 13
12 namespace { 14 namespace {
13 15
14 void CrashingCallback(void* /*user_data*/, int32_t /*result*/) { 16 void CrashingCallback(void* /*user_data*/, int32_t /*result*/) {
(...skipping 10 matching lines...) Expand all
25 27
26 } // namespace 28 } // namespace
27 29
28 void SetupTests() { 30 void SetupTests() {
29 RegisterTest("CrashInCallback", CrashInCallback); 31 RegisterTest("CrashInCallback", CrashInCallback);
30 } 32 }
31 33
32 void SetupPluginInterfaces() { 34 void SetupPluginInterfaces() {
33 // none 35 // none
34 } 36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698