| 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 <string> | 5 #include <string> |
| 6 | 6 |
| 7 #include "base/files/file_util.h" | 7 #include "base/files/file_util.h" |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "base/strings/string_number_conversions.h" | 10 #include "base/strings/string_number_conversions.h" |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 // This test lives in src/chrome instead of src/extensions because it tests | 94 // This test lives in src/chrome instead of src/extensions because it tests |
| 95 // functionality delegated back to Chrome via ChromeExtensionsBrowserClient. | 95 // functionality delegated back to Chrome via ChromeExtensionsBrowserClient. |
| 96 // See chrome/browser/extensions/chrome_url_request_util.cc. | 96 // See chrome/browser/extensions/chrome_url_request_util.cc. |
| 97 class ExtensionProtocolTest : public testing::Test { | 97 class ExtensionProtocolTest : public testing::Test { |
| 98 public: | 98 public: |
| 99 ExtensionProtocolTest() | 99 ExtensionProtocolTest() |
| 100 : thread_bundle_(content::TestBrowserThreadBundle::IO_MAINLOOP), | 100 : thread_bundle_(content::TestBrowserThreadBundle::IO_MAINLOOP), |
| 101 old_factory_(NULL), | 101 old_factory_(NULL), |
| 102 resource_context_(&test_url_request_context_) {} | 102 resource_context_(&test_url_request_context_) {} |
| 103 | 103 |
| 104 virtual void SetUp() OVERRIDE { | 104 virtual void SetUp() override { |
| 105 testing::Test::SetUp(); | 105 testing::Test::SetUp(); |
| 106 extension_info_map_ = new InfoMap(); | 106 extension_info_map_ = new InfoMap(); |
| 107 net::URLRequestContext* request_context = | 107 net::URLRequestContext* request_context = |
| 108 resource_context_.GetRequestContext(); | 108 resource_context_.GetRequestContext(); |
| 109 old_factory_ = request_context->job_factory(); | 109 old_factory_ = request_context->job_factory(); |
| 110 } | 110 } |
| 111 | 111 |
| 112 virtual void TearDown() { | 112 virtual void TearDown() { |
| 113 net::URLRequestContext* request_context = | 113 net::URLRequestContext* request_context = |
| 114 resource_context_.GetRequestContext(); | 114 resource_context_.GetRequestContext(); |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 extension->GetResourceURL("test.dat"), | 355 extension->GetResourceURL("test.dat"), |
| 356 net::DEFAULT_PRIORITY, | 356 net::DEFAULT_PRIORITY, |
| 357 &test_delegate_, | 357 &test_delegate_, |
| 358 NULL)); | 358 NULL)); |
| 359 StartRequest(request.get(), content::RESOURCE_TYPE_MEDIA); | 359 StartRequest(request.get(), content::RESOURCE_TYPE_MEDIA); |
| 360 EXPECT_EQ(net::URLRequestStatus::FAILED, request->status().status()); | 360 EXPECT_EQ(net::URLRequestStatus::FAILED, request->status().status()); |
| 361 } | 361 } |
| 362 } | 362 } |
| 363 | 363 |
| 364 } // namespace extensions | 364 } // namespace extensions |
| OLD | NEW |