| 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 | 272 |
| 273 void updateFirstPartyForCookies(); | 273 void updateFirstPartyForCookies(); |
| 274 void setFirstPartyForCookies(const KURL&); | 274 void setFirstPartyForCookies(const KURL&); |
| 275 | 275 |
| 276 void clearProvisionalLoad(); | 276 void clearProvisionalLoad(); |
| 277 void transitionToCommitted(); | 277 void transitionToCommitted(); |
| 278 void frameLoadCompleted(); | 278 void frameLoadCompleted(); |
| 279 | 279 |
| 280 SubstituteData defaultSubstituteDataForURL(const KURL&); | 280 SubstituteData defaultSubstituteDataForURL(const KURL&); |
| 281 | 281 |
| 282 bool fireBeforeUnloadEvent(Chrome*); | 282 bool fireBeforeUnloadEvent(Chrome&); |
| 283 | 283 |
| 284 void checkNavigationPolicyAndContinueLoad(PassRefPtr<FormState>); | 284 void checkNavigationPolicyAndContinueLoad(PassRefPtr<FormState>); |
| 285 void checkNavigationPolicyAndContinueFragmentScroll(const NavigationAction&)
; | 285 void checkNavigationPolicyAndContinueFragmentScroll(const NavigationAction&)
; |
| 286 void checkNewWindowPolicyAndContinue(PassRefPtr<FormState>, const String& fr
ameName, const NavigationAction&); | 286 void checkNewWindowPolicyAndContinue(PassRefPtr<FormState>, const String& fr
ameName, const NavigationAction&); |
| 287 | 287 |
| 288 bool shouldPerformFragmentNavigation(bool isFormSubmission, const String& ht
tpMethod, FrameLoadType, const KURL&); | 288 bool shouldPerformFragmentNavigation(bool isFormSubmission, const String& ht
tpMethod, FrameLoadType, const KURL&); |
| 289 void scrollToFragmentWithParentBoundary(const KURL&); | 289 void scrollToFragmentWithParentBoundary(const KURL&); |
| 290 | 290 |
| 291 void checkLoadCompleteForThisFrame(); | 291 void checkLoadCompleteForThisFrame(); |
| 292 | 292 |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 // the frame name references a frame different from the openerFrame, e.g. when i
t is | 393 // the frame name references a frame different from the openerFrame, e.g. when i
t is |
| 394 // "_self" or "_parent". | 394 // "_self" or "_parent". |
| 395 // | 395 // |
| 396 // FIXME: Consider making this function part of an appropriate class (not FrameL
oader) | 396 // FIXME: Consider making this function part of an appropriate class (not FrameL
oader) |
| 397 // and moving it to a more appropriate location. | 397 // and moving it to a more appropriate location. |
| 398 Frame* createWindow(Frame* openerFrame, Frame* lookupFrame, const FrameLoadReque
st&, const WindowFeatures&, bool& created); | 398 Frame* createWindow(Frame* openerFrame, Frame* lookupFrame, const FrameLoadReque
st&, const WindowFeatures&, bool& created); |
| 399 | 399 |
| 400 } // namespace WebCore | 400 } // namespace WebCore |
| 401 | 401 |
| 402 #endif // FrameLoader_h | 402 #endif // FrameLoader_h |
| OLD | NEW |