| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 void didAccessInitialDocument() override; | 113 void didAccessInitialDocument() override; |
| 114 void didDisplayInsecureContent() override; | 114 void didDisplayInsecureContent() override; |
| 115 void didRunInsecureContent(SecurityOrigin*, const KURL& insecureURL) overrid
e; | 115 void didRunInsecureContent(SecurityOrigin*, const KURL& insecureURL) overrid
e; |
| 116 void didDetectXSS(const KURL&, bool didBlockEntirePage) override; | 116 void didDetectXSS(const KURL&, bool didBlockEntirePage) override; |
| 117 void didDispatchPingLoader(const KURL&) override; | 117 void didDispatchPingLoader(const KURL&) override; |
| 118 void didDisplayContentWithCertificateErrors(const KURL&, const CString& secu
rityInfo) override; | 118 void didDisplayContentWithCertificateErrors(const KURL&, const CString& secu
rityInfo) override; |
| 119 void didRunContentWithCertificateErrors(const KURL&, const CString& security
Info) override; | 119 void didRunContentWithCertificateErrors(const KURL&, const CString& security
Info) override; |
| 120 void didChangePerformanceTiming() override; | 120 void didChangePerformanceTiming() override; |
| 121 void didObserveLoadingBehavior(WebLoadingBehaviorFlag) override; | 121 void didObserveLoadingBehavior(WebLoadingBehaviorFlag) override; |
| 122 void selectorMatchChanged(const Vector<String>& addedSelectors, const Vector
<String>& removedSelectors) override; | 122 void selectorMatchChanged(const Vector<String>& addedSelectors, const Vector
<String>& removedSelectors) override; |
| 123 DocumentLoader* createDocumentLoader(LocalFrame*, const ResourceRequest&, co
nst SubstituteData&) override; | 123 DocumentLoader* createDocumentLoader(LocalFrame*, const ResourceRequest&, co
nst SubstituteData&, int initiator) override; |
| 124 WTF::String userAgent() override; | 124 WTF::String userAgent() override; |
| 125 WTF::String doNotTrackValue() override; | 125 WTF::String doNotTrackValue() override; |
| 126 void transitionToCommittedForNewPage() override; | 126 void transitionToCommittedForNewPage() override; |
| 127 LocalFrame* createFrame(const FrameLoadRequest&, const WTF::AtomicString& na
me, HTMLFrameOwnerElement*) override; | 127 LocalFrame* createFrame(const FrameLoadRequest&, const WTF::AtomicString& na
me, HTMLFrameOwnerElement*) override; |
| 128 virtual bool canCreatePluginWithoutRenderer(const String& mimeType) const; | 128 virtual bool canCreatePluginWithoutRenderer(const String& mimeType) const; |
| 129 Widget* createPlugin( | 129 Widget* createPlugin( |
| 130 HTMLPlugInElement*, const KURL&, | 130 HTMLPlugInElement*, const KURL&, |
| 131 const Vector<WTF::String>&, const Vector<WTF::String>&, | 131 const Vector<WTF::String>&, const Vector<WTF::String>&, |
| 132 const WTF::String&, bool loadManually, DetachedPluginPolicy) override; | 132 const WTF::String&, bool loadManually, DetachedPluginPolicy) override; |
| 133 PassOwnPtr<WebMediaPlayer> createWebMediaPlayer(HTMLMediaElement&, const Web
MediaPlayerSource&, WebMediaPlayerClient*) override; | 133 PassOwnPtr<WebMediaPlayer> createWebMediaPlayer(HTMLMediaElement&, const Web
MediaPlayerSource&, WebMediaPlayerClient*) override; |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 Member<WebLocalFrameImpl> m_webFrame; | 194 Member<WebLocalFrameImpl> m_webFrame; |
| 195 | 195 |
| 196 String m_userAgent; | 196 String m_userAgent; |
| 197 }; | 197 }; |
| 198 | 198 |
| 199 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); | 199 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); |
| 200 | 200 |
| 201 } // namespace blink | 201 } // namespace blink |
| 202 | 202 |
| 203 #endif | 203 #endif |
| OLD | NEW |