| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 virtual void postProgressFinishedNotification(); | 101 virtual void postProgressFinishedNotification(); |
| 102 virtual void loadURLExternally(const WebCore::ResourceRequest&, WebCore::Nav
igationPolicy, const String& suggestedName = String()); | 102 virtual void loadURLExternally(const WebCore::ResourceRequest&, WebCore::Nav
igationPolicy, const String& suggestedName = String()); |
| 103 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const; | 103 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const; |
| 104 virtual bool shouldStopLoadingForHistoryItem(WebCore::HistoryItem*) const; | 104 virtual bool shouldStopLoadingForHistoryItem(WebCore::HistoryItem*) const; |
| 105 virtual void didAccessInitialDocument(); | 105 virtual void didAccessInitialDocument(); |
| 106 virtual void didDisownOpener(); | 106 virtual void didDisownOpener(); |
| 107 virtual void didDisplayInsecureContent(); | 107 virtual void didDisplayInsecureContent(); |
| 108 virtual void didRunInsecureContent(WebCore::SecurityOrigin*, const WebCore::
KURL& insecureURL); | 108 virtual void didRunInsecureContent(WebCore::SecurityOrigin*, const WebCore::
KURL& insecureURL); |
| 109 virtual void didDetectXSS(const WebCore::KURL&, bool didBlockEntirePage); | 109 virtual void didDetectXSS(const WebCore::KURL&, bool didBlockEntirePage); |
| 110 virtual void didDispatchPingLoader(const WebCore::KURL&); | 110 virtual void didDispatchPingLoader(const WebCore::KURL&); |
| 111 virtual void selectorMatchChanged(const Vector<String>& addedSelectors, cons
t Vector<String>& removedSelectors); |
| 111 virtual WebCore::ResourceError interruptedForPolicyChangeError(const WebCore
::ResourceRequest&); | 112 virtual WebCore::ResourceError interruptedForPolicyChangeError(const WebCore
::ResourceRequest&); |
| 112 virtual PassRefPtr<WebCore::DocumentLoader> createDocumentLoader( | 113 virtual PassRefPtr<WebCore::DocumentLoader> createDocumentLoader( |
| 113 const WebCore::ResourceRequest&, const WebCore::SubstituteData&); | 114 const WebCore::ResourceRequest&, const WebCore::SubstituteData&); |
| 114 virtual WTF::String userAgent(const WebCore::KURL&); | 115 virtual WTF::String userAgent(const WebCore::KURL&); |
| 115 virtual WTF::String doNotTrackValue(); | 116 virtual WTF::String doNotTrackValue(); |
| 116 virtual void transitionToCommittedForNewPage(); | 117 virtual void transitionToCommittedForNewPage(); |
| 117 virtual PassRefPtr<WebCore::Frame> createFrame( | 118 virtual PassRefPtr<WebCore::Frame> createFrame( |
| 118 const WebCore::KURL& url, const WTF::String& name, | 119 const WebCore::KURL& url, const WTF::String& name, |
| 119 WebCore::HTMLFrameOwnerElement* ownerElement, | 120 WebCore::HTMLFrameOwnerElement* ownerElement, |
| 120 const WTF::String& referrer, bool allowsScrolling, | 121 const WTF::String& referrer, bool allowsScrolling, |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(); | 161 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(); |
| 161 | 162 |
| 162 // The WebFrame that owns this object and manages its lifetime. Therefore, | 163 // The WebFrame that owns this object and manages its lifetime. Therefore, |
| 163 // the web frame object is guaranteed to exist. | 164 // the web frame object is guaranteed to exist. |
| 164 WebFrameImpl* m_webFrame; | 165 WebFrameImpl* m_webFrame; |
| 165 }; | 166 }; |
| 166 | 167 |
| 167 } // namespace WebKit | 168 } // namespace WebKit |
| 168 | 169 |
| 169 #endif | 170 #endif |
| OLD | NEW |