| 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
rights reserved. | 5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
rights reserved. |
| 6 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ | 6 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ |
| 7 | 7 |
| 8 This library is free software; you can redistribute it and/or | 8 This library is free software; you can redistribute it and/or |
| 9 modify it under the terms of the GNU Library General Public | 9 modify it under the terms of the GNU Library General Public |
| 10 License as published by the Free Software Foundation; either | 10 License as published by the Free Software Foundation; either |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 #include "core/inspector/InspectorInstrumentation.h" | 50 #include "core/inspector/InspectorInstrumentation.h" |
| 51 #include "core/loader/DocumentLoader.h" | 51 #include "core/loader/DocumentLoader.h" |
| 52 #include "core/loader/FrameLoader.h" | 52 #include "core/loader/FrameLoader.h" |
| 53 #include "core/loader/FrameLoaderClient.h" | 53 #include "core/loader/FrameLoaderClient.h" |
| 54 #include "core/loader/PingLoader.h" | 54 #include "core/loader/PingLoader.h" |
| 55 #include "core/loader/UniqueIdentifier.h" | 55 #include "core/loader/UniqueIdentifier.h" |
| 56 #include "core/loader/appcache/ApplicationCacheHost.h" | 56 #include "core/loader/appcache/ApplicationCacheHost.h" |
| 57 #include "core/page/ContentSecurityPolicy.h" | 57 #include "core/page/ContentSecurityPolicy.h" |
| 58 #include "core/page/DOMWindow.h" | 58 #include "core/page/DOMWindow.h" |
| 59 #include "core/page/Frame.h" | 59 #include "core/page/Frame.h" |
| 60 #include "core/page/Performance.h" | 60 #include "core/timing/Performance.h" |
| 61 #include "core/page/ResourceTimingInfo.h" | 61 #include "core/page/ResourceTimingInfo.h" |
| 62 #include "core/page/Settings.h" | 62 #include "core/page/Settings.h" |
| 63 #include "platform/Logging.h" | 63 #include "platform/Logging.h" |
| 64 #include "platform/TraceEvent.h" | 64 #include "platform/TraceEvent.h" |
| 65 #include "public/platform/Platform.h" | 65 #include "public/platform/Platform.h" |
| 66 #include "public/platform/WebURL.h" | 66 #include "public/platform/WebURL.h" |
| 67 #include "weborigin/SecurityOrigin.h" | 67 #include "weborigin/SecurityOrigin.h" |
| 68 #include "weborigin/SecurityPolicy.h" | 68 #include "weborigin/SecurityPolicy.h" |
| 69 #include "wtf/text/CString.h" | 69 #include "wtf/text/CString.h" |
| 70 #include "wtf/text/WTFString.h" | 70 #include "wtf/text/WTFString.h" |
| (...skipping 1261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1332 } | 1332 } |
| 1333 #endif | 1333 #endif |
| 1334 | 1334 |
| 1335 const ResourceLoaderOptions& ResourceFetcher::defaultResourceOptions() | 1335 const ResourceLoaderOptions& ResourceFetcher::defaultResourceOptions() |
| 1336 { | 1336 { |
| 1337 DEFINE_STATIC_LOCAL(ResourceLoaderOptions, options, (SendCallbacks, SniffCon
tent, BufferData, AllowStoredCredentials, ClientRequestedCredentials, AskClientF
orCrossOriginCredentials, DoSecurityCheck, CheckContentSecurityPolicy, UseDefaul
tOriginRestrictionsForType, DocumentContext)); | 1337 DEFINE_STATIC_LOCAL(ResourceLoaderOptions, options, (SendCallbacks, SniffCon
tent, BufferData, AllowStoredCredentials, ClientRequestedCredentials, AskClientF
orCrossOriginCredentials, DoSecurityCheck, CheckContentSecurityPolicy, UseDefaul
tOriginRestrictionsForType, DocumentContext)); |
| 1338 return options; | 1338 return options; |
| 1339 } | 1339 } |
| 1340 | 1340 |
| 1341 } | 1341 } |
| OLD | NEW |