| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014, Google Inc. All rights reserved. | 2 * Copyright (c) 2014, 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 class MockFetchContext : public FetchContext { | 60 class MockFetchContext : public FetchContext { |
| 61 public: | 61 public: |
| 62 static MockFetchContext* create() | 62 static MockFetchContext* create() |
| 63 { | 63 { |
| 64 return new MockFetchContext; | 64 return new MockFetchContext; |
| 65 } | 65 } |
| 66 | 66 |
| 67 ~MockFetchContext() { } | 67 ~MockFetchContext() { } |
| 68 | 68 |
| 69 bool allowImage(bool imagesEnabled, const KURL&) const override { return tru
e; } | 69 bool allowImage(bool imagesEnabled, const KURL&) const override { return tru
e; } |
| 70 bool canRequest(Resource::Type, const ResourceRequest&, const KURL&, const R
esourceLoaderOptions&, bool forPreload, FetchRequest::OriginRestriction) const o
verride { return true; } | 70 bool canRequest(Resource::Type, ResourceRequest&, const KURL&, const Resourc
eLoaderOptions&, bool forPreload, FetchRequest::OriginRestriction) const overrid
e { return true; } |
| 71 | 71 |
| 72 private: | 72 private: |
| 73 MockFetchContext() { } | 73 MockFetchContext() { } |
| 74 }; | 74 }; |
| 75 | 75 |
| 76 class CachingCorrectnessTest : public ::testing::Test { | 76 class CachingCorrectnessTest : public ::testing::Test { |
| 77 protected: | 77 protected: |
| 78 void advanceClock(double seconds) | 78 void advanceClock(double seconds) |
| 79 { | 79 { |
| 80 m_proxyPlatform.advanceClock(seconds); | 80 m_proxyPlatform.advanceClock(seconds); |
| (...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 574 firstResource->setResponse(fresh200Response); | 574 firstResource->setResponse(fresh200Response); |
| 575 memoryCache()->add(firstResource.get()); | 575 memoryCache()->add(firstResource.get()); |
| 576 | 576 |
| 577 advanceClock(500.); | 577 advanceClock(500.); |
| 578 | 578 |
| 579 ResourcePtr<Resource> fetched = fetch(); | 579 ResourcePtr<Resource> fetched = fetch(); |
| 580 EXPECT_EQ(firstResource, fetched); | 580 EXPECT_EQ(firstResource, fetched); |
| 581 } | 581 } |
| 582 | 582 |
| 583 } // namespace blink | 583 } // namespace blink |
| OLD | NEW |