| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Don Gibson <dgibson77@gmail.com> | 2 * Copyright (C) 2006 Don Gibson <dgibson77@gmail.com> |
| 3 * Copyright (C) 2006 Zack Rusin <zack@kde.org> | 3 * Copyright (C) 2006 Zack Rusin <zack@kde.org> |
| 4 * Copyright (C) 2006, 2011 Apple Inc. All rights reserved. | 4 * Copyright (C) 2006, 2011 Apple Inc. All rights reserved. |
| 5 * Copyright (C) 2007 Trolltech ASA | 5 * Copyright (C) 2007 Trolltech ASA |
| 6 * Copyright (C) 2007 Ryan Leavengood <leavengood@gmail.com> All rights reserved
. | 6 * Copyright (C) 2007 Ryan Leavengood <leavengood@gmail.com> All rights reserved
. |
| 7 * Copyright (C) 2009 Maxime Simon <simon.maxime@gmail.com> All rights reserved. | 7 * Copyright (C) 2009 Maxime Simon <simon.maxime@gmail.com> All rights reserved. |
| 8 * | 8 * |
| 9 * | 9 * |
| 10 * Redistribution and use in source and binary forms, with or without | 10 * Redistribution and use in source and binary forms, with or without |
| (...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 702 | 702 |
| 703 (m_frame->loader()->policyChecker()->*function)(PolicyUse); | 703 (m_frame->loader()->policyChecker()->*function)(PolicyUse); |
| 704 } | 704 } |
| 705 } | 705 } |
| 706 | 706 |
| 707 void FrameLoaderClientHaiku::dispatchUnableToImplementPolicy(const ResourceError
&) | 707 void FrameLoaderClientHaiku::dispatchUnableToImplementPolicy(const ResourceError
&) |
| 708 { | 708 { |
| 709 notImplemented(); | 709 notImplemented(); |
| 710 } | 710 } |
| 711 | 711 |
| 712 void FrameLoaderClientHaiku::startDownload(const ResourceRequest&) | 712 void FrameLoaderClientHaiku::startDownload(const ResourceRequest&, const String&
/* suggestedName */) |
| 713 { | 713 { |
| 714 notImplemented(); | 714 notImplemented(); |
| 715 } | 715 } |
| 716 | 716 |
| 717 PassRefPtr<Frame> FrameLoaderClientHaiku::createFrame(const KURL& url, const Str
ing& name, | 717 PassRefPtr<Frame> FrameLoaderClientHaiku::createFrame(const KURL& url, const Str
ing& name, |
| 718 HTMLFrameOwnerElement* own
erElement, | 718 HTMLFrameOwnerElement* own
erElement, |
| 719 const String& referrer, bo
ol allowsScrolling, | 719 const String& referrer, bo
ol allowsScrolling, |
| 720 int marginWidth, int margi
nHeight) | 720 int marginWidth, int margi
nHeight) |
| 721 { | 721 { |
| 722 // FIXME: We should apply the right property to the frameView. (scrollbar,ma
rgins) | 722 // FIXME: We should apply the right property to the frameView. (scrollbar,ma
rgins) |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 868 | 868 |
| 869 void FrameLoaderClientHaiku::didRestoreFromPageCache() | 869 void FrameLoaderClientHaiku::didRestoreFromPageCache() |
| 870 { | 870 { |
| 871 } | 871 } |
| 872 | 872 |
| 873 void FrameLoaderClientHaiku::dispatchDidBecomeFrameset(bool) | 873 void FrameLoaderClientHaiku::dispatchDidBecomeFrameset(bool) |
| 874 { | 874 { |
| 875 } | 875 } |
| 876 | 876 |
| 877 } // namespace WebCore | 877 } // namespace WebCore |
| OLD | NEW |