Switch to standard integer types in content/.
BUG=138542
[email protected]
Review URL: https://codereview.chromium.org/1544273002
Cr-Commit-Position: refs/heads/master@{#366875}
diff --git a/content/test/test_web_contents.h b/content/test/test_web_contents.h
index f46d0f9..0211bbf3 100644
--- a/content/test/test_web_contents.h
+++ b/content/test/test_web_contents.h
@@ -5,6 +5,8 @@
#ifndef CONTENT_TEST_TEST_WEB_CONTENTS_H_
#define CONTENT_TEST_TEST_WEB_CONTENTS_H_
+#include <stdint.h>
+
#include <string>
#include "content/browser/web_contents/web_contents_impl.h"
@@ -122,11 +124,11 @@
int32_t main_frame_widget_route_id,
const ViewHostMsg_CreateWindow_Params& params,
SessionStorageNamespace* session_storage_namespace) override;
- void CreateNewWidget(int32 render_process_id,
- int32 route_id,
+ void CreateNewWidget(int32_t render_process_id,
+ int32_t route_id,
blink::WebPopupType popup_type) override;
- void CreateNewFullscreenWidget(int32 render_process_id,
- int32 route_id) override;
+ void CreateNewFullscreenWidget(int32_t render_process_id,
+ int32_t route_id) override;
void ShowCreatedWindow(int route_id,
WindowOpenDisposition disposition,
const gfx::Rect& initial_rect,