| 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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 | 345 |
| 346 void reloadWithRequest(const ResourceRequest&, bool endToEndReload); | 346 void reloadWithRequest(const ResourceRequest&, bool endToEndReload); |
| 347 | 347 |
| 348 bool shouldReload(const KURL& currentURL, const KURL& destinationURL); | 348 bool shouldReload(const KURL& currentURL, const KURL& destinationURL); |
| 349 | 349 |
| 350 void requestFromDelegate(ResourceRequest&, unsigned long& identifier, Resour
ceError&); | 350 void requestFromDelegate(ResourceRequest&, unsigned long& identifier, Resour
ceError&); |
| 351 | 351 |
| 352 void detachChildren(); | 352 void detachChildren(); |
| 353 void closeAndRemoveChild(Frame*); | 353 void closeAndRemoveChild(Frame*); |
| 354 | 354 |
| 355 void loadInSameDocument(const KURL&, SerializedScriptValue* stateObject, boo
l isNewNavigation); | 355 void loadInSameDocument(const KURL&, PassRefPtr<SerializedScriptValue> state
Object, bool isNewNavigation); |
| 356 | 356 |
| 357 void prepareForLoadStart(); | 357 void prepareForLoadStart(); |
| 358 void provisionalLoadStarted(); | 358 void provisionalLoadStarted(); |
| 359 | 359 |
| 360 bool didOpenURL(); | 360 bool didOpenURL(); |
| 361 | 361 |
| 362 void scheduleCheckCompleted(); | 362 void scheduleCheckCompleted(); |
| 363 void scheduleCheckLoadComplete(); | 363 void scheduleCheckLoadComplete(); |
| 364 void startCheckCompleteTimer(); | 364 void startCheckCompleteTimer(); |
| 365 | 365 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 440 // the frame name references a frame different from the openerFrame, e.g. when i
t is | 440 // the frame name references a frame different from the openerFrame, e.g. when i
t is |
| 441 // "_self" or "_parent". | 441 // "_self" or "_parent". |
| 442 // | 442 // |
| 443 // FIXME: Consider making this function part of an appropriate class (not FrameL
oader) | 443 // FIXME: Consider making this function part of an appropriate class (not FrameL
oader) |
| 444 // and moving it to a more appropriate location. | 444 // and moving it to a more appropriate location. |
| 445 Frame* createWindow(Frame* openerFrame, Frame* lookupFrame, const FrameLoadReque
st&, const WindowFeatures&, bool& created); | 445 Frame* createWindow(Frame* openerFrame, Frame* lookupFrame, const FrameLoadReque
st&, const WindowFeatures&, bool& created); |
| 446 | 446 |
| 447 } // namespace WebCore | 447 } // namespace WebCore |
| 448 | 448 |
| 449 #endif // FrameLoader_h | 449 #endif // FrameLoader_h |
| OLD | NEW |