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

Side by Side Diff: content/browser/frame_host/navigation_handle_impl_unittest.cc

Issue 2494633004: Remove about:srcdoc url conversion. (Closed)
Patch Set: Rebase Created 4 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 unified diff | Download patch
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 "base/macros.h" 5 #include "base/macros.h"
6 #include "content/browser/frame_host/navigation_handle_impl.h" 6 #include "content/browser/frame_host/navigation_handle_impl.h"
7 #include "content/public/browser/navigation_throttle.h" 7 #include "content/public/browser/navigation_throttle.h"
8 #include "content/public/browser/ssl_status.h" 8 #include "content/public/browser/ssl_status.h"
9 #include "content/public/common/request_context_type.h" 9 #include "content/public/common/request_context_type.h"
10 #include "content/test/test_render_frame_host.h" 10 #include "content/test/test_render_frame_host.h"
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 61
62 class NavigationHandleImplTest : public RenderViewHostImplTestHarness { 62 class NavigationHandleImplTest : public RenderViewHostImplTestHarness {
63 public: 63 public:
64 NavigationHandleImplTest() 64 NavigationHandleImplTest()
65 : was_callback_called_(false), 65 : was_callback_called_(false),
66 callback_result_(NavigationThrottle::DEFER) {} 66 callback_result_(NavigationThrottle::DEFER) {}
67 67
68 void SetUp() override { 68 void SetUp() override {
69 RenderViewHostImplTestHarness::SetUp(); 69 RenderViewHostImplTestHarness::SetUp();
70 test_handle_ = NavigationHandleImpl::Create( 70 test_handle_ = NavigationHandleImpl::Create(
71 GURL(), main_test_rfh()->frame_tree_node(), true, false, false, 71 GURL(), main_test_rfh()->frame_tree_node(), true, false,
72 base::TimeTicks::Now(), 0, false); 72 base::TimeTicks::Now(), 0, false);
73 EXPECT_EQ(REQUEST_CONTEXT_TYPE_UNSPECIFIED, 73 EXPECT_EQ(REQUEST_CONTEXT_TYPE_UNSPECIFIED,
74 test_handle_->request_context_type_); 74 test_handle_->request_context_type_);
75 contents()->GetMainFrame()->InitializeRenderFrameIfNeeded(); 75 contents()->GetMainFrame()->InitializeRenderFrameIfNeeded();
76 } 76 }
77 77
78 void TearDown() override { 78 void TearDown() override {
79 // Release the |test_handle_| before destroying the WebContents, to match 79 // Release the |test_handle_| before destroying the WebContents, to match
80 // the WebContentsObserverSanityChecker expectations. 80 // the WebContentsObserverSanityChecker expectations.
81 test_handle_.reset(); 81 test_handle_.reset();
(...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 EXPECT_EQ(NavigationThrottle::CANCEL_AND_IGNORE, callback_result()); 685 EXPECT_EQ(NavigationThrottle::CANCEL_AND_IGNORE, callback_result());
686 EXPECT_EQ(0, cancel_throttle->will_start_calls()); 686 EXPECT_EQ(0, cancel_throttle->will_start_calls());
687 EXPECT_EQ(0, cancel_throttle->will_redirect_calls()); 687 EXPECT_EQ(0, cancel_throttle->will_redirect_calls());
688 EXPECT_EQ(1, cancel_throttle->will_process_response_calls()); 688 EXPECT_EQ(1, cancel_throttle->will_process_response_calls());
689 EXPECT_EQ(0, proceed_throttle->will_start_calls()); 689 EXPECT_EQ(0, proceed_throttle->will_start_calls());
690 EXPECT_EQ(0, proceed_throttle->will_redirect_calls()); 690 EXPECT_EQ(0, proceed_throttle->will_redirect_calls());
691 EXPECT_EQ(0, proceed_throttle->will_process_response_calls()); 691 EXPECT_EQ(0, proceed_throttle->will_process_response_calls());
692 } 692 }
693 693
694 } // namespace content 694 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/frame_host/navigation_handle_impl_browsertest.cc ('k') | content/browser/frame_host/navigation_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698