| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013, Google Inc. All rights reserved. | 2 * Copyright (c) 2013, Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 #include <memory> | 33 #include <memory> |
| 34 #include "platform/WebTaskRunner.h" | 34 #include "platform/WebTaskRunner.h" |
| 35 #include "platform/exported/WrappedResourceResponse.h" | 35 #include "platform/exported/WrappedResourceResponse.h" |
| 36 #include "platform/heap/Handle.h" | 36 #include "platform/heap/Handle.h" |
| 37 #include "platform/heap/HeapAllocator.h" | 37 #include "platform/heap/HeapAllocator.h" |
| 38 #include "platform/heap/Member.h" | 38 #include "platform/heap/Member.h" |
| 39 #include "platform/loader/fetch/FetchInitiatorInfo.h" | 39 #include "platform/loader/fetch/FetchInitiatorInfo.h" |
| 40 #include "platform/loader/fetch/FetchInitiatorTypeNames.h" | 40 #include "platform/loader/fetch/FetchInitiatorTypeNames.h" |
| 41 #include "platform/loader/fetch/FetchRequest.h" | 41 #include "platform/loader/fetch/FetchRequest.h" |
| 42 #include "platform/loader/fetch/FetchTestingPlatformSupport.h" | |
| 43 #include "platform/loader/fetch/MemoryCache.h" | 42 #include "platform/loader/fetch/MemoryCache.h" |
| 44 #include "platform/loader/fetch/MockFetchContext.h" | |
| 45 #include "platform/loader/fetch/MockResource.h" | 43 #include "platform/loader/fetch/MockResource.h" |
| 46 #include "platform/loader/fetch/MockResourceClient.h" | 44 #include "platform/loader/fetch/MockResourceClient.h" |
| 47 #include "platform/loader/fetch/RawResource.h" | 45 #include "platform/loader/fetch/RawResource.h" |
| 48 #include "platform/loader/fetch/ResourceLoader.h" | 46 #include "platform/loader/fetch/ResourceLoader.h" |
| 47 #include "platform/loader/testing/FetchTestingPlatformSupport.h" |
| 48 #include "platform/loader/testing/MockFetchContext.h" |
| 49 #include "platform/network/ResourceError.h" | 49 #include "platform/network/ResourceError.h" |
| 50 #include "platform/network/ResourceRequest.h" | 50 #include "platform/network/ResourceRequest.h" |
| 51 #include "platform/network/ResourceTimingInfo.h" | 51 #include "platform/network/ResourceTimingInfo.h" |
| 52 #include "platform/scheduler/test/fake_web_task_runner.h" | 52 #include "platform/scheduler/test/fake_web_task_runner.h" |
| 53 #include "platform/testing/TestingPlatformSupport.h" | 53 #include "platform/testing/TestingPlatformSupport.h" |
| 54 #include "platform/testing/URLTestHelpers.h" | 54 #include "platform/testing/URLTestHelpers.h" |
| 55 #include "platform/testing/UnitTestHelpers.h" | 55 #include "platform/testing/UnitTestHelpers.h" |
| 56 #include "platform/testing/weburl_loader_mock.h" | 56 #include "platform/testing/weburl_loader_mock.h" |
| 57 #include "platform/testing/weburl_loader_mock_factory_impl.h" | 57 #include "platform/testing/weburl_loader_mock_factory_impl.h" |
| 58 #include "platform/weborigin/KURL.h" | 58 #include "platform/weborigin/KURL.h" |
| (...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 653 // Resource created by parser on the second fetcher | 653 // Resource created by parser on the second fetcher |
| 654 FetchRequest fetchRequest2 = FetchRequest(url, FetchInitiatorInfo()); | 654 FetchRequest fetchRequest2 = FetchRequest(url, FetchInitiatorInfo()); |
| 655 Resource* newResource2 = MockResource::fetch(fetchRequest2, fetcher2); | 655 Resource* newResource2 = MockResource::fetch(fetchRequest2, fetcher2); |
| 656 Persistent<MockResourceClient> client2 = new MockResourceClient(newResource2); | 656 Persistent<MockResourceClient> client2 = new MockResourceClient(newResource2); |
| 657 EXPECT_NE(resource, newResource2); | 657 EXPECT_NE(resource, newResource2); |
| 658 EXPECT_FALSE(fetcher2->isFetching()); | 658 EXPECT_FALSE(fetcher2->isFetching()); |
| 659 Platform::current()->getURLLoaderMockFactory()->serveAsynchronousRequests(); | 659 Platform::current()->getURLLoaderMockFactory()->serveAsynchronousRequests(); |
| 660 } | 660 } |
| 661 | 661 |
| 662 } // namespace blink | 662 } // namespace blink |
| OLD | NEW |