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

Side by Side Diff: Source/WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.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
« no previous file with comments | « Source/WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.h ('k') | Source/WebKit/haiku/ChangeLog » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007, 2008 Alp Toker <alp@atoker.com> 2 * Copyright (C) 2007, 2008 Alp Toker <alp@atoker.com>
3 * Copyright (C) 2007, 2008, 2009 Holger Hans Peter Freyther 3 * Copyright (C) 2007, 2008, 2009 Holger Hans Peter Freyther
4 * Copyright (C) 2007 Christian Dywan <christian@twotoasts.de> 4 * Copyright (C) 2007 Christian Dywan <christian@twotoasts.de>
5 * Copyright (C) 2008, 2009 Collabora Ltd. All rights reserved. 5 * Copyright (C) 2008, 2009 Collabora Ltd. All rights reserved.
6 * Copyright (C) 2009, 2010 Gustavo Noronha Silva <gns@gnome.org> 6 * Copyright (C) 2009, 2010 Gustavo Noronha Silva <gns@gnome.org>
7 * Copyright (C) Research In Motion Limited 2009. All rights reserved. 7 * Copyright (C) Research In Motion Limited 2009. All rights reserved.
8 * Copyright (C) 2010 Igalia S.L. 8 * Copyright (C) 2010 Igalia S.L.
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after
749 } 749 }
750 750
751 bool FrameLoaderClient::shouldGoToHistoryItem(HistoryItem* item) const 751 bool FrameLoaderClient::shouldGoToHistoryItem(HistoryItem* item) const
752 { 752 {
753 // FIXME: This is a very simple implementation. More sophisticated 753 // FIXME: This is a very simple implementation. More sophisticated
754 // implementation would delegate the decision to a PolicyDelegate. 754 // implementation would delegate the decision to a PolicyDelegate.
755 // See mac implementation for example. 755 // See mac implementation for example.
756 return item != 0; 756 return item != 0;
757 } 757 }
758 758
759 bool FrameLoaderClient::shouldStopLoadingForHistoryItem(HistoryItem* item) const
760 {
761 return true;
762 }
763
759 void FrameLoaderClient::dispatchDidAddBackForwardItem(HistoryItem*) const 764 void FrameLoaderClient::dispatchDidAddBackForwardItem(HistoryItem*) const
760 { 765 {
761 } 766 }
762 767
763 void FrameLoaderClient::dispatchDidRemoveBackForwardItem(HistoryItem*) const 768 void FrameLoaderClient::dispatchDidRemoveBackForwardItem(HistoryItem*) const
764 { 769 {
765 } 770 }
766 771
767 void FrameLoaderClient::dispatchDidChangeBackForwardIndex() const 772 void FrameLoaderClient::dispatchDidChangeBackForwardIndex() const
768 { 773 {
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
1354 void FrameLoaderClient::dispatchDidBecomeFrameset(bool) 1359 void FrameLoaderClient::dispatchDidBecomeFrameset(bool)
1355 { 1360 {
1356 } 1361 }
1357 1362
1358 PassRefPtr<FrameNetworkingContext> FrameLoaderClient::createNetworkingContext() 1363 PassRefPtr<FrameNetworkingContext> FrameLoaderClient::createNetworkingContext()
1359 { 1364 {
1360 return FrameNetworkingContextGtk::create(core(m_frame)); 1365 return FrameNetworkingContextGtk::create(core(m_frame));
1361 } 1366 }
1362 1367
1363 } 1368 }
OLDNEW
« no previous file with comments | « Source/WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.h ('k') | Source/WebKit/haiku/ChangeLog » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698