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

Unified Diff: content/test/test_render_frame_host.cc

Issue 1544273002: Switch to standard integer types in content/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « content/test/test_render_frame_host.h ('k') | content/test/test_render_frame_host_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/test_render_frame_host.cc
diff --git a/content/test/test_render_frame_host.cc b/content/test/test_render_frame_host.cc
index d13e6558502dd0af943fd06e9e80079488c10fc8..5ae3fd8ef74f51fbc52a6482062f0c5356fa35bc 100644
--- a/content/test/test_render_frame_host.cc
+++ b/content/test/test_render_frame_host.cc
@@ -45,8 +45,8 @@ TestRenderFrameHost::TestRenderFrameHost(SiteInstance* site_instance,
RenderWidgetHostDelegate* rwh_delegate,
FrameTree* frame_tree,
FrameTreeNode* frame_tree_node,
- int32 routing_id,
- int32 widget_routing_id,
+ int32_t routing_id,
+ int32_t widget_routing_id,
int flags)
: RenderFrameHostImpl(site_instance,
render_view_host,
@@ -395,7 +395,7 @@ void TestRenderFrameHost::PrepareForCommitWithServerRedirect(
url_loader->CallOnResponseStarted(response, MakeEmptyStream());
}
-int32 TestRenderFrameHost::ComputeNextPageID() {
+int32_t TestRenderFrameHost::ComputeNextPageID() {
const NavigationEntryImpl* entry = static_cast<NavigationEntryImpl*>(
frame_tree_node()->navigator()->GetController()->GetPendingEntry());
DCHECK(!(entry && entry->site_instance()) ||
« no previous file with comments | « content/test/test_render_frame_host.h ('k') | content/test/test_render_frame_host_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698