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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 #include "core/loader/FrameLoaderClient.h" | 49 #include "core/loader/FrameLoaderClient.h" |
50 #include "core/loader/LinkLoader.h" | 50 #include "core/loader/LinkLoader.h" |
51 #include "core/loader/MixedContentChecker.h" | 51 #include "core/loader/MixedContentChecker.h" |
52 #include "core/loader/PingLoader.h" | 52 #include "core/loader/PingLoader.h" |
53 #include "core/loader/ProgressTracker.h" | 53 #include "core/loader/ProgressTracker.h" |
54 #include "core/loader/appcache/ApplicationCacheHost.h" | 54 #include "core/loader/appcache/ApplicationCacheHost.h" |
55 #include "core/page/Page.h" | 55 #include "core/page/Page.h" |
56 #include "core/svg/graphics/SVGImageChromeClient.h" | 56 #include "core/svg/graphics/SVGImageChromeClient.h" |
57 #include "core/timing/DOMWindowPerformance.h" | 57 #include "core/timing/DOMWindowPerformance.h" |
58 #include "core/timing/Performance.h" | 58 #include "core/timing/Performance.h" |
59 #include "core/timing/ResourceTimingInfo.h" | |
60 #include "platform/Logging.h" | 59 #include "platform/Logging.h" |
| 60 #include "platform/network/ResourceTimingInfo.h" |
61 #include "platform/weborigin/SchemeRegistry.h" | 61 #include "platform/weborigin/SchemeRegistry.h" |
62 #include "platform/weborigin/SecurityPolicy.h" | 62 #include "platform/weborigin/SecurityPolicy.h" |
63 | 63 |
64 namespace blink { | 64 namespace blink { |
65 | 65 |
66 FrameFetchContext::FrameFetchContext(DocumentLoader* loader) | 66 FrameFetchContext::FrameFetchContext(DocumentLoader* loader) |
67 : m_document(nullptr) | 67 : m_document(nullptr) |
68 , m_documentLoader(loader) | 68 , m_documentLoader(loader) |
69 { | 69 { |
70 } | 70 } |
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
656 UseCounter::count(frame(), UseCounter::ClientHintsViewportWidth); | 656 UseCounter::count(frame(), UseCounter::ClientHintsViewportWidth); |
657 } | 657 } |
658 | 658 |
659 DEFINE_TRACE(FrameFetchContext) | 659 DEFINE_TRACE(FrameFetchContext) |
660 { | 660 { |
661 visitor->trace(m_document); | 661 visitor->trace(m_document); |
662 FetchContext::trace(visitor); | 662 FetchContext::trace(visitor); |
663 } | 663 } |
664 | 664 |
665 } // namespace blink | 665 } // namespace blink |
OLD | NEW |