| 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 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 void scrollToAnchor(const KURL&); | 339 void scrollToAnchor(const KURL&); |
| 340 | 340 |
| 341 void tokenizerProcessedData(); | 341 void tokenizerProcessedData(); |
| 342 | 342 |
| 343 void handledOnloadEvents(); | 343 void handledOnloadEvents(); |
| 344 String userAgent(const KURL&) const; | 344 String userAgent(const KURL&) const; |
| 345 | 345 |
| 346 Widget* createJavaAppletWidget(const IntSize&, HTMLAppletElement*, const
HashMap<String, String>& args); | 346 Widget* createJavaAppletWidget(const IntSize&, HTMLAppletElement*, const
HashMap<String, String>& args); |
| 347 | 347 |
| 348 void dispatchWindowObjectAvailable(); | 348 void dispatchWindowObjectAvailable(); |
| 349 void dispatchDocumentElementAvailable(); | |
| 350 void restoreDocumentState(); | 349 void restoreDocumentState(); |
| 351 | 350 |
| 352 Frame* opener(); | 351 Frame* opener(); |
| 353 void setOpener(Frame*); | 352 void setOpener(Frame*); |
| 354 bool openedByDOM() const; | 353 bool openedByDOM() const; |
| 355 void setOpenedByDOM(); | 354 void setOpenedByDOM(); |
| 356 | 355 |
| 357 void provisionalLoadStarted(); | 356 void provisionalLoadStarted(); |
| 358 | 357 |
| 359 bool userGestureHint(); | 358 bool userGestureHint(); |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 #endif | 690 #endif |
| 692 | 691 |
| 693 #if ENABLE(WML) | 692 #if ENABLE(WML) |
| 694 bool m_forceReloadWmlDeck; | 693 bool m_forceReloadWmlDeck; |
| 695 #endif | 694 #endif |
| 696 }; | 695 }; |
| 697 | 696 |
| 698 } | 697 } |
| 699 | 698 |
| 700 #endif | 699 #endif |
| OLD | NEW |