| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 3 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 4 * Copyright (C) Research In Motion Limited 2009. All rights reserved. | 4 * Copyright (C) Research In Motion Limited 2009. All rights reserved. |
| 5 * Copyright (C) 2011 Google Inc. All rights reserved. | 5 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
| 8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
| 9 * are met: | 9 * are met: |
| 10 * | 10 * |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 #include "core/loader/NavigationPolicy.h" | 44 #include "core/loader/NavigationPolicy.h" |
| 45 #include "platform/Timer.h" | 45 #include "platform/Timer.h" |
| 46 #include "platform/heap/Handle.h" | 46 #include "platform/heap/Handle.h" |
| 47 #include "platform/network/ResourceRequest.h" | 47 #include "platform/network/ResourceRequest.h" |
| 48 #include "wtf/Forward.h" | 48 #include "wtf/Forward.h" |
| 49 #include "wtf/HashSet.h" | 49 #include "wtf/HashSet.h" |
| 50 | 50 |
| 51 namespace blink { | 51 namespace blink { |
| 52 | 52 |
| 53 class DocumentLoader; | 53 class DocumentLoader; |
| 54 class HTMLFormElement; |
| 54 class Frame; | 55 class Frame; |
| 55 class FrameLoaderClient; | 56 class FrameLoaderClient; |
| 56 class ProgressTracker; | 57 class ProgressTracker; |
| 57 class ResourceError; | 58 class ResourceError; |
| 58 class SerializedScriptValue; | 59 class SerializedScriptValue; |
| 59 class SubstituteData; | 60 class SubstituteData; |
| 60 | 61 |
| 61 struct FrameLoadRequest; | 62 struct FrameLoadRequest; |
| 62 | 63 |
| 63 CORE_EXPORT bool isBackForwardLoadType(FrameLoadType); | 64 CORE_EXPORT bool isBackForwardLoadType(FrameLoadType); |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 bool allowPlugins(ReasonForCallingAllowPlugins); | 179 bool allowPlugins(ReasonForCallingAllowPlugins); |
| 179 | 180 |
| 180 void updateForSameDocumentNavigation(const KURL&, SameDocumentNavigationSour
ce, PassRefPtr<SerializedScriptValue>, HistoryScrollRestorationType, FrameLoadTy
pe); | 181 void updateForSameDocumentNavigation(const KURL&, SameDocumentNavigationSour
ce, PassRefPtr<SerializedScriptValue>, HistoryScrollRestorationType, FrameLoadTy
pe); |
| 181 | 182 |
| 182 HistoryItem* currentItem() const { return m_currentItem.get(); } | 183 HistoryItem* currentItem() const { return m_currentItem.get(); } |
| 183 void saveScrollState(); | 184 void saveScrollState(); |
| 184 | 185 |
| 185 void restoreScrollPositionAndViewState(); | 186 void restoreScrollPositionAndViewState(); |
| 186 | 187 |
| 187 bool shouldContinueForNavigationPolicy(const ResourceRequest&, const Substit
uteData&, DocumentLoader*, ContentSecurityPolicyDisposition, | 188 bool shouldContinueForNavigationPolicy(const ResourceRequest&, const Substit
uteData&, DocumentLoader*, ContentSecurityPolicyDisposition, |
| 188 NavigationType, NavigationPolicy, bool shouldReplaceCurrentEntry, bool i
sClientRedirect); | 189 NavigationType, NavigationPolicy, bool shouldReplaceCurrentEntry, bool i
sClientRedirect, HTMLFormElement*); |
| 189 | 190 |
| 190 DECLARE_TRACE(); | 191 DECLARE_TRACE(); |
| 191 | 192 |
| 192 private: | 193 private: |
| 193 void checkTimerFired(Timer<FrameLoader>*); | 194 void checkTimerFired(Timer<FrameLoader>*); |
| 194 void didAccessInitialDocumentTimerFired(Timer<FrameLoader>*); | 195 void didAccessInitialDocumentTimerFired(Timer<FrameLoader>*); |
| 195 | 196 |
| 196 bool prepareRequestForThisFrame(FrameLoadRequest&); | 197 bool prepareRequestForThisFrame(FrameLoadRequest&); |
| 197 static void setReferrerForFrameRequest(ResourceRequest&, ShouldSendReferrer,
Document*); | 198 static void setReferrerForFrameRequest(ResourceRequest&, ShouldSendReferrer,
Document*); |
| 198 FrameLoadType determineFrameLoadType(const FrameLoadRequest&); | 199 FrameLoadType determineFrameLoadType(const FrameLoadRequest&); |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 | 278 |
| 278 SandboxFlags m_forcedSandboxFlags; | 279 SandboxFlags m_forcedSandboxFlags; |
| 279 | 280 |
| 280 bool m_dispatchingDidClearWindowObjectInMainWorld; | 281 bool m_dispatchingDidClearWindowObjectInMainWorld; |
| 281 bool m_protectProvisionalLoader; | 282 bool m_protectProvisionalLoader; |
| 282 }; | 283 }; |
| 283 | 284 |
| 284 } // namespace blink | 285 } // namespace blink |
| 285 | 286 |
| 286 #endif // FrameLoader_h | 287 #endif // FrameLoader_h |
| OLD | NEW |