| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2010 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 865 loader->serverRedirectSourceForHistory(), loader->serverRedirectDest
inationForHistory(), m_frame->frameID()), 0); | 865 loader->serverRedirectSourceForHistory(), loader->serverRedirectDest
inationForHistory(), m_frame->frameID()), 0); |
| 866 } | 866 } |
| 867 } | 867 } |
| 868 | 868 |
| 869 bool WebFrameLoaderClient::shouldGoToHistoryItem(HistoryItem*) const | 869 bool WebFrameLoaderClient::shouldGoToHistoryItem(HistoryItem*) const |
| 870 { | 870 { |
| 871 notImplemented(); | 871 notImplemented(); |
| 872 return true; | 872 return true; |
| 873 } | 873 } |
| 874 | 874 |
| 875 bool WebFrameLoaderClient::shouldStopLoadingForHistoryItem(HistoryItem* item) co
nst |
| 876 { |
| 877 return true; |
| 878 } |
| 879 |
| 875 void WebFrameLoaderClient::dispatchDidAddBackForwardItem(HistoryItem*) const | 880 void WebFrameLoaderClient::dispatchDidAddBackForwardItem(HistoryItem*) const |
| 876 { | 881 { |
| 877 notImplemented(); | 882 notImplemented(); |
| 878 } | 883 } |
| 879 | 884 |
| 880 void WebFrameLoaderClient::dispatchDidRemoveBackForwardItem(HistoryItem*) const | 885 void WebFrameLoaderClient::dispatchDidRemoveBackForwardItem(HistoryItem*) const |
| 881 { | 886 { |
| 882 notImplemented(); | 887 notImplemented(); |
| 883 } | 888 } |
| 884 | 889 |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1291 notImplemented(); | 1296 notImplemented(); |
| 1292 return false; | 1297 return false; |
| 1293 } | 1298 } |
| 1294 | 1299 |
| 1295 PassRefPtr<FrameNetworkingContext> WebFrameLoaderClient::createNetworkingContext
() | 1300 PassRefPtr<FrameNetworkingContext> WebFrameLoaderClient::createNetworkingContext
() |
| 1296 { | 1301 { |
| 1297 return WebFrameNetworkingContext::create(m_frame->coreFrame()); | 1302 return WebFrameNetworkingContext::create(m_frame->coreFrame()); |
| 1298 } | 1303 } |
| 1299 | 1304 |
| 1300 } // namespace WebKit | 1305 } // namespace WebKit |
| OLD | NEW |