| 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 | 221 |
| 222 // Calls continueLoadAfterNavigationPolicy | 222 // Calls continueLoadAfterNavigationPolicy |
| 223 void loadWithNavigationAction(const NavigationAction&, FrameLoadType, PassRe
fPtr<FormState>, | 223 void loadWithNavigationAction(const NavigationAction&, FrameLoadType, PassRe
fPtr<FormState>, |
| 224 const SubstituteData&, ClientRedirectPolicy = NotClientRedirect, const A
tomicString& overrideEncoding = nullAtom); | 224 const SubstituteData&, ClientRedirectPolicy = NotClientRedirect, const A
tomicString& overrideEncoding = nullAtom); |
| 225 | 225 |
| 226 void detachFromParent(); | 226 void detachFromParent(); |
| 227 void detachChildren(); | 227 void detachChildren(); |
| 228 void closeAndRemoveChild(Frame*); | 228 void closeAndRemoveChild(Frame*); |
| 229 void detachClient(); | 229 void detachClient(); |
| 230 | 230 |
| 231 void setHistoryItemStateForCommit(HistoryCommitType, bool isPushOrReplaceSta
te = false, PassRefPtr<SerializedScriptValue> = 0); | 231 void setHistoryItemStateForCommit(HistoryCommitType, bool isPushOrReplaceSta
te = false, PassRefPtr<SerializedScriptValue> = nullptr); |
| 232 | 232 |
| 233 void loadInSameDocument(const KURL&, PassRefPtr<SerializedScriptValue> state
Object, UpdateBackForwardListPolicy, ClientRedirectPolicy); | 233 void loadInSameDocument(const KURL&, PassRefPtr<SerializedScriptValue> state
Object, UpdateBackForwardListPolicy, ClientRedirectPolicy); |
| 234 | 234 |
| 235 void scheduleCheckCompleted(); | 235 void scheduleCheckCompleted(); |
| 236 void startCheckCompleteTimer(); | 236 void startCheckCompleteTimer(); |
| 237 | 237 |
| 238 Frame* m_frame; | 238 Frame* m_frame; |
| 239 FrameLoaderClient* m_client; | 239 FrameLoaderClient* m_client; |
| 240 | 240 |
| 241 // FIXME: These should be OwnPtr<T> to reduce build times and simplify | 241 // FIXME: These should be OwnPtr<T> to reduce build times and simplify |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 | 275 |
| 276 bool m_didAccessInitialDocument; | 276 bool m_didAccessInitialDocument; |
| 277 Timer<FrameLoader> m_didAccessInitialDocumentTimer; | 277 Timer<FrameLoader> m_didAccessInitialDocumentTimer; |
| 278 | 278 |
| 279 SandboxFlags m_forcedSandboxFlags; | 279 SandboxFlags m_forcedSandboxFlags; |
| 280 }; | 280 }; |
| 281 | 281 |
| 282 } // namespace WebCore | 282 } // namespace WebCore |
| 283 | 283 |
| 284 #endif // FrameLoader_h | 284 #endif // FrameLoader_h |
| OLD | NEW |