Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(395)

Side by Side Diff: Source/WebKit/wx/WebKitSupport/FrameLoaderClientWx.cpp

Issue 6541090: Merge 79107 - 2011-02-19 Charlie Reis <creis@chromium.org>... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/648/
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « Source/WebKit/wx/WebKitSupport/FrameLoaderClientWx.h ('k') | Source/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698