| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Kevin Ollivier <kevino@theolliviers.com> | 2 * Copyright (C) 2007 Kevin Ollivier <kevino@theolliviers.com> |
| 3 * | 3 * |
| 4 * All rights reserved. | 4 * 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 * 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 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 571 { | 571 { |
| 572 notImplemented(); | 572 notImplemented(); |
| 573 } | 573 } |
| 574 | 574 |
| 575 bool FrameLoaderClientWx::shouldGoToHistoryItem(WebCore::HistoryItem*) const | 575 bool FrameLoaderClientWx::shouldGoToHistoryItem(WebCore::HistoryItem*) const |
| 576 { | 576 { |
| 577 notImplemented(); | 577 notImplemented(); |
| 578 return true; | 578 return true; |
| 579 } | 579 } |
| 580 | 580 |
| 581 bool FrameLoaderClientWx::shouldStopLoadingForHistoryItem(WebCore::HistoryItem*)
const |
| 582 { |
| 583 return true; |
| 584 } |
| 585 |
| 581 void FrameLoaderClientWx::dispatchDidAddBackForwardItem(WebCore::HistoryItem*) c
onst | 586 void FrameLoaderClientWx::dispatchDidAddBackForwardItem(WebCore::HistoryItem*) c
onst |
| 582 { | 587 { |
| 583 } | 588 } |
| 584 | 589 |
| 585 void FrameLoaderClientWx::dispatchDidRemoveBackForwardItem(WebCore::HistoryItem*
) const | 590 void FrameLoaderClientWx::dispatchDidRemoveBackForwardItem(WebCore::HistoryItem*
) const |
| 586 { | 591 { |
| 587 } | 592 } |
| 588 | 593 |
| 589 void FrameLoaderClientWx::dispatchDidChangeBackForwardIndex() const | 594 void FrameLoaderClientWx::dispatchDidChangeBackForwardIndex() const |
| 590 { | 595 { |
| (...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 984 // not be used for pages with plugins in them. | 989 // not be used for pages with plugins in them. |
| 985 return false; | 990 return false; |
| 986 } | 991 } |
| 987 | 992 |
| 988 PassRefPtr<FrameNetworkingContext> FrameLoaderClientWx::createNetworkingContext(
) | 993 PassRefPtr<FrameNetworkingContext> FrameLoaderClientWx::createNetworkingContext(
) |
| 989 { | 994 { |
| 990 return FrameNetworkingContextWx::create(m_frame); | 995 return FrameNetworkingContextWx::create(m_frame); |
| 991 } | 996 } |
| 992 | 997 |
| 993 } | 998 } |
| OLD | NEW |