| 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 30 matching lines...) Expand all Loading... |
| 41 #include "core/loader/HistoryItem.h" | 41 #include "core/loader/HistoryItem.h" |
| 42 #include "core/loader/MixedContentChecker.h" | 42 #include "core/loader/MixedContentChecker.h" |
| 43 #include "platform/Timer.h" | 43 #include "platform/Timer.h" |
| 44 #include "platform/network/ResourceRequest.h" | 44 #include "platform/network/ResourceRequest.h" |
| 45 #include "wtf/Forward.h" | 45 #include "wtf/Forward.h" |
| 46 #include "wtf/HashSet.h" | 46 #include "wtf/HashSet.h" |
| 47 #include "wtf/OwnPtr.h" | 47 #include "wtf/OwnPtr.h" |
| 48 | 48 |
| 49 namespace blink { | 49 namespace blink { |
| 50 | 50 |
| 51 class Resource; | |
| 52 class Chrome; | 51 class Chrome; |
| 53 class DOMWrapperWorld; | 52 class DOMWrapperWorld; |
| 54 class DocumentLoader; | 53 class DocumentLoader; |
| 55 class Event; | 54 class Event; |
| 56 class FetchContext; | 55 class FetchContext; |
| 57 class FormState; | 56 class FormState; |
| 58 class FormSubmission; | 57 class FormSubmission; |
| 58 class Frame; |
| 59 class FrameLoaderClient; | 59 class FrameLoaderClient; |
| 60 class IconController; | 60 class IconController; |
| 61 class NavigationAction; | 61 class NavigationAction; |
| 62 class Page; | 62 class Page; |
| 63 class ProgressTracker; | 63 class ProgressTracker; |
| 64 class ResourceError; | 64 class ResourceError; |
| 65 class ResourceResponse; | 65 class ResourceResponse; |
| 66 class SecurityOrigin; | 66 class SecurityOrigin; |
| 67 class SerializedScriptValue; | 67 class SerializedScriptValue; |
| 68 class SubstituteData; | 68 class SubstituteData; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 | 148 |
| 149 void dispatchDidClearWindowObjectInMainWorld(); | 149 void dispatchDidClearWindowObjectInMainWorld(); |
| 150 void dispatchDidClearDocumentOfWindowObject(); | 150 void dispatchDidClearDocumentOfWindowObject(); |
| 151 void dispatchDocumentElementAvailable(); | 151 void dispatchDocumentElementAvailable(); |
| 152 | 152 |
| 153 // The following sandbox flags will be forced, regardless of changes to | 153 // The following sandbox flags will be forced, regardless of changes to |
| 154 // the sandbox attribute of any parent frames. | 154 // the sandbox attribute of any parent frames. |
| 155 void forceSandboxFlags(SandboxFlags flags) { m_forcedSandboxFlags |= flags;
} | 155 void forceSandboxFlags(SandboxFlags flags) { m_forcedSandboxFlags |= flags;
} |
| 156 SandboxFlags effectiveSandboxFlags() const; | 156 SandboxFlags effectiveSandboxFlags() const; |
| 157 | 157 |
| 158 LocalFrame* opener(); | 158 Frame* opener(); |
| 159 void setOpener(LocalFrame*); | 159 void setOpener(LocalFrame*); |
| 160 | 160 |
| 161 void detachFromParent(); | 161 void detachFromParent(); |
| 162 | 162 |
| 163 void loadDone(); | 163 void loadDone(); |
| 164 void finishedParsing(); | 164 void finishedParsing(); |
| 165 void checkCompleted(); | 165 void checkCompleted(); |
| 166 | 166 |
| 167 void commitProvisionalLoad(); | 167 void commitProvisionalLoad(); |
| 168 | 168 |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 Timer<FrameLoader> m_didAccessInitialDocumentTimer; | 277 Timer<FrameLoader> m_didAccessInitialDocumentTimer; |
| 278 | 278 |
| 279 SandboxFlags m_forcedSandboxFlags; | 279 SandboxFlags m_forcedSandboxFlags; |
| 280 | 280 |
| 281 bool m_willDetachClient; | 281 bool m_willDetachClient; |
| 282 }; | 282 }; |
| 283 | 283 |
| 284 } // namespace blink | 284 } // namespace blink |
| 285 | 285 |
| 286 #endif // FrameLoader_h | 286 #endif // FrameLoader_h |
| OLD | NEW |