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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 | 387 |
388 String m_outgoingReferrer; | 388 String m_outgoingReferrer; |
389 | 389 |
390 bool m_isExecutingJavaScriptFormAction; | 390 bool m_isExecutingJavaScriptFormAction; |
391 | 391 |
392 bool m_didCallImplicitClose; | 392 bool m_didCallImplicitClose; |
393 bool m_wasUnloadEventEmitted; | 393 bool m_wasUnloadEventEmitted; |
394 PageDismissalType m_pageDismissalEventBeingDispatched; | 394 PageDismissalType m_pageDismissalEventBeingDispatched; |
395 bool m_isComplete; | 395 bool m_isComplete; |
396 | 396 |
397 RefPtr<SerializedScriptValue> m_pendingStateObject; | |
398 | |
399 bool m_needsClear; | 397 bool m_needsClear; |
400 | 398 |
401 KURL m_submittedFormURL; | 399 KURL m_submittedFormURL; |
402 | 400 |
403 Timer<FrameLoader> m_checkTimer; | 401 Timer<FrameLoader> m_checkTimer; |
404 bool m_shouldCallCheckCompleted; | 402 bool m_shouldCallCheckCompleted; |
405 bool m_shouldCallCheckLoadComplete; | 403 bool m_shouldCallCheckLoadComplete; |
406 | 404 |
407 Frame* m_opener; | 405 Frame* m_opener; |
408 HashSet<Frame*> m_openedFrames; | 406 HashSet<Frame*> m_openedFrames; |
(...skipping 15 matching lines...) Expand all Loading... |
424 // the frame name references a frame different from the openerFrame, e.g. when i
t is | 422 // the frame name references a frame different from the openerFrame, e.g. when i
t is |
425 // "_self" or "_parent". | 423 // "_self" or "_parent". |
426 // | 424 // |
427 // FIXME: Consider making this function part of an appropriate class (not FrameL
oader) | 425 // FIXME: Consider making this function part of an appropriate class (not FrameL
oader) |
428 // and moving it to a more appropriate location. | 426 // and moving it to a more appropriate location. |
429 Frame* createWindow(Frame* openerFrame, Frame* lookupFrame, const FrameLoadReque
st&, const WindowFeatures&, bool& created); | 427 Frame* createWindow(Frame* openerFrame, Frame* lookupFrame, const FrameLoadReque
st&, const WindowFeatures&, bool& created); |
430 | 428 |
431 } // namespace WebCore | 429 } // namespace WebCore |
432 | 430 |
433 #endif // FrameLoader_h | 431 #endif // FrameLoader_h |
OLD | NEW |