| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) | 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) |
| 3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org) | 3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org) |
| 4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org) | 4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org) |
| 5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All | 5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All |
| 6 rights reserved. | 6 rights reserved. |
| 7 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ | 7 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ |
| 8 | 8 |
| 9 This library is free software; you can redistribute it and/or | 9 This library is free software; you can redistribute it and/or |
| 10 modify it under the terms of the GNU Library General Public | 10 modify it under the terms of the GNU Library General Public |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 #include "platform/loader/fetch/UniqueIdentifier.h" | 40 #include "platform/loader/fetch/UniqueIdentifier.h" |
| 41 #include "platform/mhtml/ArchiveResource.h" | 41 #include "platform/mhtml/ArchiveResource.h" |
| 42 #include "platform/mhtml/MHTMLArchive.h" | 42 #include "platform/mhtml/MHTMLArchive.h" |
| 43 #include "platform/network/NetworkInstrumentation.h" | 43 #include "platform/network/NetworkInstrumentation.h" |
| 44 #include "platform/network/NetworkUtils.h" | 44 #include "platform/network/NetworkUtils.h" |
| 45 #include "platform/probe/PlatformProbes.h" | 45 #include "platform/probe/PlatformProbes.h" |
| 46 #include "platform/weborigin/KnownPorts.h" | 46 #include "platform/weborigin/KnownPorts.h" |
| 47 #include "platform/weborigin/SecurityOrigin.h" | 47 #include "platform/weborigin/SecurityOrigin.h" |
| 48 #include "platform/weborigin/SecurityPolicy.h" | 48 #include "platform/weborigin/SecurityPolicy.h" |
| 49 #include "platform/weborigin/SecurityViolationReportingPolicy.h" | 49 #include "platform/weborigin/SecurityViolationReportingPolicy.h" |
| 50 #include "platform/wtf/text/CString.h" |
| 51 #include "platform/wtf/text/WTFString.h" |
| 50 #include "public/platform/Platform.h" | 52 #include "public/platform/Platform.h" |
| 51 #include "public/platform/WebCachePolicy.h" | 53 #include "public/platform/WebCachePolicy.h" |
| 52 #include "public/platform/WebURL.h" | 54 #include "public/platform/WebURL.h" |
| 53 #include "public/platform/WebURLRequest.h" | 55 #include "public/platform/WebURLRequest.h" |
| 54 #include "wtf/text/CString.h" | |
| 55 #include "wtf/text/WTFString.h" | |
| 56 | 56 |
| 57 using blink::WebURLRequest; | 57 using blink::WebURLRequest; |
| 58 | 58 |
| 59 namespace blink { | 59 namespace blink { |
| 60 | 60 |
| 61 namespace { | 61 namespace { |
| 62 | 62 |
| 63 // Events for UMA. Do not reorder or delete. Add new events at the end, but | 63 // Events for UMA. Do not reorder or delete. Add new events at the end, but |
| 64 // before SriResourceIntegrityMismatchEventCount. | 64 // before SriResourceIntegrityMismatchEventCount. |
| 65 enum SriResourceIntegrityMismatchEvent { | 65 enum SriResourceIntegrityMismatchEvent { |
| (...skipping 1505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1571 visitor->trace(m_context); | 1571 visitor->trace(m_context); |
| 1572 visitor->trace(m_archive); | 1572 visitor->trace(m_archive); |
| 1573 visitor->trace(m_loaders); | 1573 visitor->trace(m_loaders); |
| 1574 visitor->trace(m_nonBlockingLoaders); | 1574 visitor->trace(m_nonBlockingLoaders); |
| 1575 visitor->trace(m_documentResources); | 1575 visitor->trace(m_documentResources); |
| 1576 visitor->trace(m_preloads); | 1576 visitor->trace(m_preloads); |
| 1577 visitor->trace(m_resourceTimingInfoMap); | 1577 visitor->trace(m_resourceTimingInfoMap); |
| 1578 } | 1578 } |
| 1579 | 1579 |
| 1580 } // namespace blink | 1580 } // namespace blink |
| OLD | NEW |