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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 void detach(); | 155 void detach(); |
156 | 156 |
157 void loadDone(); | 157 void loadDone(); |
158 void finishedParsing(); | 158 void finishedParsing(); |
159 void checkCompleted(); | 159 void checkCompleted(); |
160 | 160 |
161 void commitProvisionalLoad(); | 161 void commitProvisionalLoad(); |
162 | 162 |
163 FrameLoaderStateMachine* stateMachine() const { return &m_stateMachine; } | 163 FrameLoaderStateMachine* stateMachine() const { return &m_stateMachine; } |
164 | 164 |
165 LocalFrame* findFrameForNavigation(const AtomicString& name, Document* activ
eDocument); | |
166 | |
167 void applyUserAgent(ResourceRequest&); | 165 void applyUserAgent(ResourceRequest&); |
168 | 166 |
169 bool shouldInterruptLoadForXFrameOptions(const String&, const KURL&, unsigne
d long requestIdentifier); | 167 bool shouldInterruptLoadForXFrameOptions(const String&, const KURL&, unsigne
d long requestIdentifier); |
170 | 168 |
171 bool allAncestorsAreComplete() const; // including this | 169 bool allAncestorsAreComplete() const; // including this |
172 | 170 |
173 bool shouldClose(); | 171 bool shouldClose(); |
174 | 172 |
175 bool allowPlugins(ReasonForCallingAllowPlugins); | 173 bool allowPlugins(ReasonForCallingAllowPlugins); |
176 | 174 |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 | 272 |
275 bool m_didAccessInitialDocument; | 273 bool m_didAccessInitialDocument; |
276 Timer<FrameLoader> m_didAccessInitialDocumentTimer; | 274 Timer<FrameLoader> m_didAccessInitialDocumentTimer; |
277 | 275 |
278 SandboxFlags m_forcedSandboxFlags; | 276 SandboxFlags m_forcedSandboxFlags; |
279 }; | 277 }; |
280 | 278 |
281 } // namespace blink | 279 } // namespace blink |
282 | 280 |
283 #endif // FrameLoader_h | 281 #endif // FrameLoader_h |
OLD | NEW |