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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 #include "core/loader/FrameLoaderClient.h" | 52 #include "core/loader/FrameLoaderClient.h" |
53 #include "core/loader/PingLoader.h" | 53 #include "core/loader/PingLoader.h" |
54 #include "core/loader/UniqueIdentifier.h" | 54 #include "core/loader/UniqueIdentifier.h" |
55 #include "core/loader/appcache/ApplicationCacheHost.h" | 55 #include "core/loader/appcache/ApplicationCacheHost.h" |
56 #include "core/page/ContentSecurityPolicy.h" | 56 #include "core/page/ContentSecurityPolicy.h" |
57 #include "core/page/DOMWindow.h" | 57 #include "core/page/DOMWindow.h" |
58 #include "core/page/Frame.h" | 58 #include "core/page/Frame.h" |
59 #include "core/page/Performance.h" | 59 #include "core/page/Performance.h" |
60 #include "core/page/ResourceTimingInfo.h" | 60 #include "core/page/ResourceTimingInfo.h" |
61 #include "core/page/Settings.h" | 61 #include "core/page/Settings.h" |
62 #include "core/platform/Logging.h" | 62 #include "platform/Logging.h" |
63 #include "core/platform/chromium/TraceEvent.h" | 63 #include "core/platform/chromium/TraceEvent.h" |
64 #include "public/platform/Platform.h" | 64 #include "public/platform/Platform.h" |
65 #include "public/platform/WebURL.h" | 65 #include "public/platform/WebURL.h" |
66 #include "weborigin/SecurityOrigin.h" | 66 #include "weborigin/SecurityOrigin.h" |
67 #include "weborigin/SecurityPolicy.h" | 67 #include "weborigin/SecurityPolicy.h" |
68 #include "wtf/text/CString.h" | 68 #include "wtf/text/CString.h" |
69 #include "wtf/text/WTFString.h" | 69 #include "wtf/text/WTFString.h" |
70 | 70 |
71 #define PRELOAD_DEBUG 0 | 71 #define PRELOAD_DEBUG 0 |
72 | 72 |
(...skipping 1239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1312 } | 1312 } |
1313 #endif | 1313 #endif |
1314 | 1314 |
1315 const ResourceLoaderOptions& ResourceFetcher::defaultResourceOptions() | 1315 const ResourceLoaderOptions& ResourceFetcher::defaultResourceOptions() |
1316 { | 1316 { |
1317 DEFINE_STATIC_LOCAL(ResourceLoaderOptions, options, (SendCallbacks, SniffCon
tent, BufferData, AllowStoredCredentials, ClientRequestedCredentials, AskClientF
orCrossOriginCredentials, DoSecurityCheck, CheckContentSecurityPolicy, UseDefaul
tOriginRestrictionsForType, DocumentContext)); | 1317 DEFINE_STATIC_LOCAL(ResourceLoaderOptions, options, (SendCallbacks, SniffCon
tent, BufferData, AllowStoredCredentials, ClientRequestedCredentials, AskClientF
orCrossOriginCredentials, DoSecurityCheck, CheckContentSecurityPolicy, UseDefaul
tOriginRestrictionsForType, DocumentContext)); |
1318 return options; | 1318 return options; |
1319 } | 1319 } |
1320 | 1320 |
1321 } | 1321 } |
OLD | NEW |