| 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 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 661 return !frame()->isMainFrame() && frame()->settings() && frame()->settings()
->lowPriorityIframes(); | 661 return !frame()->isMainFrame() && frame()->settings() && frame()->settings()
->lowPriorityIframes(); |
| 662 } | 662 } |
| 663 | 663 |
| 664 DEFINE_TRACE(FrameFetchContext) | 664 DEFINE_TRACE(FrameFetchContext) |
| 665 { | 665 { |
| 666 visitor->trace(m_document); | 666 visitor->trace(m_document); |
| 667 FetchContext::trace(visitor); | 667 FetchContext::trace(visitor); |
| 668 } | 668 } |
| 669 | 669 |
| 670 } // namespace blink | 670 } // namespace blink |
| OLD | NEW |