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

Unified Diff: components/printing/test/print_mock_render_thread.cc

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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 side-by-side diff with in-line comments
Download patch
Index: components/printing/test/print_mock_render_thread.cc
diff --git a/components/printing/test/print_mock_render_thread.cc b/components/printing/test/print_mock_render_thread.cc
index 74d914818b6195065bf365b47a34dd9b5499ae83..749a86458aa6baa9b97698c2c10b7c535ef168ba 100644
--- a/components/printing/test/print_mock_render_thread.cc
+++ b/components/printing/test/print_mock_render_thread.cc
@@ -4,9 +4,12 @@
#include "components/printing/test/print_mock_render_thread.h"
+#include <stddef.h>
+
#include <vector>
#include "base/values.h"
+#include "build/build_config.h"
#include "components/printing/test/mock_printer.h"
#include "ipc/ipc_sync_message.h"
#include "printing/page_range.h"
@@ -105,7 +108,7 @@ void PrintMockRenderThread::OnDidPreviewPage(
print_preview_pages_remaining_--;
}
-void PrintMockRenderThread::OnCheckForCancel(int32 preview_ui_id,
+void PrintMockRenderThread::OnCheckForCancel(int32_t preview_ui_id,
int preview_request_id,
bool* cancel) {
*cancel =
« no previous file with comments | « components/printing/test/print_mock_render_thread.h ('k') | components/printing/test/print_web_view_helper_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698