OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009 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 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
8 * are met: | 8 * are met: |
9 * | 9 * |
10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
523 | 523 |
524 bool m_creatingInitialEmptyDocument; | 524 bool m_creatingInitialEmptyDocument; |
525 bool m_isDisplayingInitialEmptyDocument; | 525 bool m_isDisplayingInitialEmptyDocument; |
526 bool m_committedFirstRealDocumentLoad; | 526 bool m_committedFirstRealDocumentLoad; |
527 | 527 |
528 bool m_didPerformFirstNavigation; | 528 bool m_didPerformFirstNavigation; |
529 bool m_loadingFromCachedPage; | 529 bool m_loadingFromCachedPage; |
530 bool m_suppressOpenerInNewFrame; | 530 bool m_suppressOpenerInNewFrame; |
531 | 531 |
532 SandboxFlags m_sandboxFlags; | 532 SandboxFlags m_sandboxFlags; |
| 533 bool m_userGestureSet; |
| 534 bool m_userGesture; |
533 | 535 |
534 #ifndef NDEBUG | 536 #ifndef NDEBUG |
535 bool m_didDispatchDidCommitLoad; | 537 bool m_didDispatchDidCommitLoad; |
536 #endif | 538 #endif |
537 }; | 539 }; |
538 | 540 |
539 } // namespace WebCore | 541 } // namespace WebCore |
540 | 542 |
541 #endif // FrameLoader_h | 543 #endif // FrameLoader_h |
OLD | NEW |