| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/browser/service_worker/service_worker_request_handler.h" | 5 #include "content/browser/service_worker/service_worker_request_handler.h" |
| 6 | 6 |
| 7 #include "base/run_loop.h" | 7 #include "base/run_loop.h" |
| 8 #include "content/browser/fileapi/mock_url_request_delegate.h" | 8 #include "content/browser/fileapi/mock_url_request_delegate.h" |
| 9 #include "content/browser/service_worker/embedded_worker_test_helper.h" | 9 #include "content/browser/service_worker/embedded_worker_test_helper.h" |
| 10 #include "content/browser/service_worker/service_worker_context_core.h" | 10 #include "content/browser/service_worker/service_worker_context_core.h" |
| 11 #include "content/browser/service_worker/service_worker_provider_host.h" | 11 #include "content/browser/service_worker/service_worker_provider_host.h" |
| 12 #include "content/browser/service_worker/service_worker_registration.h" | 12 #include "content/browser/service_worker/service_worker_registration.h" |
| 13 #include "content/browser/service_worker/service_worker_utils.h" | |
| 14 #include "content/common/resource_request_body.h" | 13 #include "content/common/resource_request_body.h" |
| 14 #include "content/common/service_worker/service_worker_utils.h" |
| 15 #include "content/public/common/request_context_frame_type.h" | 15 #include "content/public/common/request_context_frame_type.h" |
| 16 #include "content/public/common/request_context_type.h" | 16 #include "content/public/common/request_context_type.h" |
| 17 #include "content/public/common/resource_type.h" | 17 #include "content/public/common/resource_type.h" |
| 18 #include "content/public/test/test_browser_thread_bundle.h" | 18 #include "content/public/test/test_browser_thread_bundle.h" |
| 19 #include "net/url_request/url_request_context.h" | 19 #include "net/url_request/url_request_context.h" |
| 20 #include "storage/browser/blob/blob_storage_context.h" | 20 #include "storage/browser/blob/blob_storage_context.h" |
| 21 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
| 22 | 22 |
| 23 namespace content { | 23 namespace content { |
| 24 | 24 |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 provider_host_->SetDocumentUrl(GURL("")); | 153 provider_host_->SetDocumentUrl(GURL("")); |
| 154 EXPECT_FALSE(InitializeHandlerCheck( | 154 EXPECT_FALSE(InitializeHandlerCheck( |
| 155 "http://host/scope/doc", "GET", true, RESOURCE_TYPE_IMAGE)); | 155 "http://host/scope/doc", "GET", true, RESOURCE_TYPE_IMAGE)); |
| 156 EXPECT_STREQ("", provider_host_->document_url().spec().c_str()); | 156 EXPECT_STREQ("", provider_host_->document_url().spec().c_str()); |
| 157 EXPECT_FALSE(InitializeHandlerCheck( | 157 EXPECT_FALSE(InitializeHandlerCheck( |
| 158 "https://host/scope/doc", "GET", true, RESOURCE_TYPE_IMAGE)); | 158 "https://host/scope/doc", "GET", true, RESOURCE_TYPE_IMAGE)); |
| 159 EXPECT_STREQ("", provider_host_->document_url().spec().c_str()); | 159 EXPECT_STREQ("", provider_host_->document_url().spec().c_str()); |
| 160 } | 160 } |
| 161 | 161 |
| 162 } // namespace content | 162 } // namespace content |
| OLD | NEW |