| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 void didDispatchPingLoader(const KURL&) override; | 115 void didDispatchPingLoader(const KURL&) override; |
| 116 void didDisplayContentWithCertificateErrors(const KURL&, const CString& secu
rityInfo, const WebURL& mainResourceUrl, const CString& mainResourceSecurityInfo
) override; | 116 void didDisplayContentWithCertificateErrors(const KURL&, const CString& secu
rityInfo, const WebURL& mainResourceUrl, const CString& mainResourceSecurityInfo
) override; |
| 117 void didRunContentWithCertificateErrors(const KURL&, const CString& security
Info, const WebURL& mainResourceUrl, const CString& mainResourceSecurityInfo) ov
erride; | 117 void didRunContentWithCertificateErrors(const KURL&, const CString& security
Info, const WebURL& mainResourceUrl, const CString& mainResourceSecurityInfo) ov
erride; |
| 118 void didChangePerformanceTiming() override; | 118 void didChangePerformanceTiming() override; |
| 119 void selectorMatchChanged(const Vector<String>& addedSelectors, const Vector
<String>& removedSelectors) override; | 119 void selectorMatchChanged(const Vector<String>& addedSelectors, const Vector
<String>& removedSelectors) override; |
| 120 PassRefPtrWillBeRawPtr<DocumentLoader> createDocumentLoader(LocalFrame*, con
st ResourceRequest&, const SubstituteData&) override; | 120 PassRefPtrWillBeRawPtr<DocumentLoader> createDocumentLoader(LocalFrame*, con
st ResourceRequest&, const SubstituteData&) override; |
| 121 WTF::String userAgent() override; | 121 WTF::String userAgent() override; |
| 122 WTF::String doNotTrackValue() override; | 122 WTF::String doNotTrackValue() override; |
| 123 void transitionToCommittedForNewPage() override; | 123 void transitionToCommittedForNewPage() override; |
| 124 PassRefPtrWillBeRawPtr<LocalFrame> createFrame(const FrameLoadRequest&, cons
t WTF::AtomicString& name, HTMLFrameOwnerElement*) override; | 124 PassRefPtrWillBeRawPtr<LocalFrame> createFrame(const FrameLoadRequest&, cons
t WTF::AtomicString& name, HTMLFrameOwnerElement*) override; |
| 125 WebFramelet* createFramelet(const KURL&, HTMLFrameletElement*) override; |
| 125 virtual bool canCreatePluginWithoutRenderer(const String& mimeType) const; | 126 virtual bool canCreatePluginWithoutRenderer(const String& mimeType) const; |
| 126 PassRefPtrWillBeRawPtr<Widget> createPlugin( | 127 PassRefPtrWillBeRawPtr<Widget> createPlugin( |
| 127 HTMLPlugInElement*, const KURL&, | 128 HTMLPlugInElement*, const KURL&, |
| 128 const Vector<WTF::String>&, const Vector<WTF::String>&, | 129 const Vector<WTF::String>&, const Vector<WTF::String>&, |
| 129 const WTF::String&, bool loadManually, DetachedPluginPolicy) override; | 130 const WTF::String&, bool loadManually, DetachedPluginPolicy) override; |
| 130 PassOwnPtr<WebMediaPlayer> createWebMediaPlayer(HTMLMediaElement&, WebMediaP
layer::LoadType, const WebURL&, WebMediaPlayerClient*) override; | 131 PassOwnPtr<WebMediaPlayer> createWebMediaPlayer(HTMLMediaElement&, WebMediaP
layer::LoadType, const WebURL&, WebMediaPlayerClient*) override; |
| 131 PassOwnPtr<WebMediaSession> createWebMediaSession() override; | 132 PassOwnPtr<WebMediaSession> createWebMediaSession() override; |
| 132 ObjectContentType objectContentType( | 133 ObjectContentType objectContentType( |
| 133 const KURL&, const WTF::String& mimeType, bool shouldPreferPlugInsForIma
ges) override; | 134 const KURL&, const WTF::String& mimeType, bool shouldPreferPlugInsForIma
ges) override; |
| 134 void didChangeScrollOffset() override; | 135 void didChangeScrollOffset() override; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 // The WebFrame that owns this object and manages its lifetime. Therefore, | 188 // The WebFrame that owns this object and manages its lifetime. Therefore, |
| 188 // the web frame object is guaranteed to exist. | 189 // the web frame object is guaranteed to exist. |
| 189 RawPtrWillBeMember<WebLocalFrameImpl> m_webFrame; | 190 RawPtrWillBeMember<WebLocalFrameImpl> m_webFrame; |
| 190 }; | 191 }; |
| 191 | 192 |
| 192 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); | 193 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); |
| 193 | 194 |
| 194 } // namespace blink | 195 } // namespace blink |
| 195 | 196 |
| 196 #endif | 197 #endif |
| OLD | NEW |