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

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

Issue 2038813003: Making ResourceRequestBody part of //content's public API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing... Created 4 years, 6 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/renderer/render_view_browsertest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_frame.h" 5 #include "content/test/test_render_frame.h"
6 6
7 #include "content/common/navigation_params.h" 7 #include "content/common/navigation_params.h"
8 #include "content/common/resource_request_body.h" 8 #include "content/common/resource_request_body_impl.h"
9 #include "content/public/common/browser_side_navigation_policy.h" 9 #include "content/public/common/browser_side_navigation_policy.h"
10 #include "content/public/common/resource_response.h" 10 #include "content/public/common/resource_response.h"
11 11
12 namespace content { 12 namespace content {
13 13
14 // static 14 // static
15 RenderFrameImpl* TestRenderFrame::CreateTestRenderFrame( 15 RenderFrameImpl* TestRenderFrame::CreateTestRenderFrame(
16 const RenderFrameImpl::CreateParams& params) { 16 const RenderFrameImpl::CreateParams& params) {
17 return new TestRenderFrame(params); 17 return new TestRenderFrame(params);
18 } 18 }
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 } 60 }
61 61
62 void TestRenderFrame::SetCompositionFromExistingText( 62 void TestRenderFrame::SetCompositionFromExistingText(
63 int start, 63 int start,
64 int end, 64 int end,
65 const std::vector<blink::WebCompositionUnderline>& underlines) { 65 const std::vector<blink::WebCompositionUnderline>& underlines) {
66 OnSetCompositionFromExistingText(start, end, underlines); 66 OnSetCompositionFromExistingText(start, end, underlines);
67 } 67 }
68 68
69 } // namespace content 69 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/render_view_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698