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

Side by Side Diff: content/test/test_render_view_host_factory.cc

Issue 1544273002: Switch to standard integer types in content/. (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
« no previous file with comments | « content/test/test_render_view_host_factory.h ('k') | content/test/test_web_contents.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/test/test_render_view_host_factory.h" 5 #include "content/test/test_render_view_host_factory.h"
6 6
7 #include "content/browser/site_instance_impl.h" 7 #include "content/browser/site_instance_impl.h"
8 #include "content/public/browser/render_process_host_factory.h" 8 #include "content/public/browser/render_process_host_factory.h"
9 #include "content/test/test_render_view_host.h" 9 #include "content/test/test_render_view_host.h"
10 10
(...skipping 12 matching lines...) Expand all
23 23
24 void TestRenderViewHostFactory::set_render_process_host_factory( 24 void TestRenderViewHostFactory::set_render_process_host_factory(
25 RenderProcessHostFactory* rph_factory) { 25 RenderProcessHostFactory* rph_factory) {
26 SiteInstanceImpl::set_render_process_host_factory(rph_factory); 26 SiteInstanceImpl::set_render_process_host_factory(rph_factory);
27 } 27 }
28 28
29 RenderViewHost* TestRenderViewHostFactory::CreateRenderViewHost( 29 RenderViewHost* TestRenderViewHostFactory::CreateRenderViewHost(
30 SiteInstance* instance, 30 SiteInstance* instance,
31 RenderViewHostDelegate* delegate, 31 RenderViewHostDelegate* delegate,
32 RenderWidgetHostDelegate* widget_delegate, 32 RenderWidgetHostDelegate* widget_delegate,
33 int32 routing_id, 33 int32_t routing_id,
34 int32 main_frame_routing_id, 34 int32_t main_frame_routing_id,
35 bool swapped_out) { 35 bool swapped_out) {
36 return new TestRenderViewHost(instance, delegate, widget_delegate, routing_id, 36 return new TestRenderViewHost(instance, delegate, widget_delegate, routing_id,
37 main_frame_routing_id, swapped_out); 37 main_frame_routing_id, swapped_out);
38 } 38 }
39 39
40 } // namespace content 40 } // namespace content
OLDNEW
« no previous file with comments | « content/test/test_render_view_host_factory.h ('k') | content/test/test_web_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698