| OLD | NEW |
| 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 "base/bind.h" | 5 #include "base/bind.h" |
| 6 #include "base/bind_helpers.h" | 6 #include "base/bind_helpers.h" |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "base/memory/scoped_vector.h" | 8 #include "base/memory/scoped_vector.h" |
| 9 #include "base/synchronization/waitable_event.h" | 9 #include "base/synchronization/waitable_event.h" |
| 10 #include "chrome/browser/component/navigation_interception/intercept_navigation_
resource_throttle.h" | |
| 11 #include "chrome/test/base/chrome_render_view_host_test_harness.h" | 10 #include "chrome/test/base/chrome_render_view_host_test_harness.h" |
| 11 #include "content/components/navigation_interception/intercept_navigation_resour
ce_throttle.h" |
| 12 #include "content/public/browser/render_process_host.h" | 12 #include "content/public/browser/render_process_host.h" |
| 13 #include "content/public/browser/resource_context.h" | 13 #include "content/public/browser/resource_context.h" |
| 14 #include "content/public/browser/resource_controller.h" | 14 #include "content/public/browser/resource_controller.h" |
| 15 #include "content/public/browser/resource_dispatcher_host.h" | 15 #include "content/public/browser/resource_dispatcher_host.h" |
| 16 #include "content/public/browser/resource_dispatcher_host_delegate.h" | 16 #include "content/public/browser/resource_dispatcher_host_delegate.h" |
| 17 #include "content/public/browser/resource_request_info.h" | 17 #include "content/public/browser/resource_request_info.h" |
| 18 #include "content/public/browser/resource_throttle.h" | 18 #include "content/public/browser/resource_throttle.h" |
| 19 #include "content/public/browser/web_contents.h" | 19 #include "content/public/browser/web_contents.h" |
| 20 #include "content/public/browser/web_contents_delegate.h" | 20 #include "content/public/browser/web_contents_delegate.h" |
| 21 #include "content/public/test/mock_resource_context.h" | 21 #include "content/public/test/mock_resource_context.h" |
| 22 #include "content/public/test/test_browser_thread.h" | 22 #include "content/public/test/test_browser_thread.h" |
| 23 #include "net/url_request/url_request.h" | 23 #include "net/url_request/url_request.h" |
| 24 #include "testing/gmock/include/gmock/gmock.h" | 24 #include "testing/gmock/include/gmock/gmock.h" |
| 25 #include "testing/gtest/include/gtest/gtest.h" | 25 #include "testing/gtest/include/gtest/gtest.h" |
| 26 | 26 |
| 27 using namespace content; | 27 using namespace content; |
| 28 using namespace navigation_interception; | |
| 29 using namespace ::testing; | 28 using namespace ::testing; |
| 30 | 29 |
| 31 namespace { | 30 namespace { |
| 32 | 31 |
| 33 const char* kTestUrl = "http://www.test.com/"; | 32 const char* kTestUrl = "http://www.test.com/"; |
| 34 const char* kUnsafeTestUrl = "about:crash"; | 33 const char* kUnsafeTestUrl = "about:crash"; |
| 35 | 34 |
| 36 void ContinueTestCase() { | 35 void ContinueTestCase() { |
| 37 BrowserThread::PostTask( | 36 BrowserThread::PostTask( |
| 38 BrowserThread::UI, | 37 BrowserThread::UI, |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 RunThrottleWillStartRequestOnIOThread, | 338 RunThrottleWillStartRequestOnIOThread, |
| 340 base::Unretained(this), | 339 base::Unretained(this), |
| 341 GURL(kUnsafeTestUrl), | 340 GURL(kUnsafeTestUrl), |
| 342 web_contents()->GetRenderViewHost()->GetProcess()->GetID(), | 341 web_contents()->GetRenderViewHost()->GetProcess()->GetID(), |
| 343 web_contents()->GetRenderViewHost()->GetRoutingID(), | 342 web_contents()->GetRenderViewHost()->GetRoutingID(), |
| 344 base::Unretained(&defer))); | 343 base::Unretained(&defer))); |
| 345 | 344 |
| 346 // Wait for the request to finish processing. | 345 // Wait for the request to finish processing. |
| 347 message_loop_.Run(); | 346 message_loop_.Run(); |
| 348 } | 347 } |
| OLD | NEW |