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

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

Issue 857213003: Refactor sudden termination (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed nits Created 5 years, 10 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_frame_host.h ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_host.h" 5 #include "content/test/test_render_frame_host.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "content/browser/frame_host/frame_tree.h" 8 #include "content/browser/frame_host/frame_tree.h"
9 #include "content/browser/frame_host/navigation_request.h" 9 #include "content/browser/frame_host/navigation_request.h"
10 #include "content/browser/frame_host/navigator.h" 10 #include "content/browser/frame_host/navigator.h"
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 return; 234 return;
235 235
236 ASSERT_TRUE(request->state() == NavigationRequest::STARTED); 236 ASSERT_TRUE(request->state() == NavigationRequest::STARTED);
237 TestNavigationURLLoader* url_loader = 237 TestNavigationURLLoader* url_loader =
238 static_cast<TestNavigationURLLoader*>(request->loader_for_testing()); 238 static_cast<TestNavigationURLLoader*>(request->loader_for_testing());
239 ASSERT_TRUE(url_loader); 239 ASSERT_TRUE(url_loader);
240 scoped_refptr<ResourceResponse> response(new ResourceResponse); 240 scoped_refptr<ResourceResponse> response(new ResourceResponse);
241 url_loader->CallOnResponseStarted(response, MakeEmptyStream()); 241 url_loader->CallOnResponseStarted(response, MakeEmptyStream());
242 } 242 }
243 243
244 void TestRenderFrameHost::SendBeforeUnloadHandlersPresent(bool present) {
245 OnBeforeUnloadHandlersPresent(present);
246 }
247
248 void TestRenderFrameHost::SendUnloadHandlersPresent(bool present) {
249 OnUnloadHandlersPresent(present);
250 }
251
244 } // namespace content 252 } // namespace content
OLDNEW
« no previous file with comments | « content/test/test_render_frame_host.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698