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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 virtual void postProgressEstimateChangedNotification(); | 100 virtual void postProgressEstimateChangedNotification(); |
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 void navigateBackForward(int offset) const; | 103 virtual void navigateBackForward(int offset) const; |
104 virtual void didAccessInitialDocument(); | 104 virtual void didAccessInitialDocument(); |
105 virtual void didDisownOpener(); | 105 virtual void didDisownOpener(); |
106 virtual void didDisplayInsecureContent(); | 106 virtual void didDisplayInsecureContent(); |
107 virtual void didRunInsecureContent(WebCore::SecurityOrigin*, const WebCore::
KURL& insecureURL); | 107 virtual void didRunInsecureContent(WebCore::SecurityOrigin*, const WebCore::
KURL& insecureURL); |
108 virtual void didDetectXSS(const WebCore::KURL&, bool didBlockEntirePage); | 108 virtual void didDetectXSS(const WebCore::KURL&, bool didBlockEntirePage); |
109 virtual void didDispatchPingLoader(const WebCore::KURL&); | 109 virtual void didDispatchPingLoader(const WebCore::KURL&); |
| 110 virtual void selectorMatchChanged(const Vector<String>& addedSelectors, cons
t Vector<String>& removedSelectors); |
110 virtual PassRefPtr<WebCore::DocumentLoader> createDocumentLoader( | 111 virtual PassRefPtr<WebCore::DocumentLoader> createDocumentLoader( |
111 const WebCore::ResourceRequest&, const WebCore::SubstituteData&); | 112 const WebCore::ResourceRequest&, const WebCore::SubstituteData&); |
112 virtual WTF::String userAgent(const WebCore::KURL&); | 113 virtual WTF::String userAgent(const WebCore::KURL&); |
113 virtual WTF::String doNotTrackValue(); | 114 virtual WTF::String doNotTrackValue(); |
114 virtual void transitionToCommittedForNewPage(); | 115 virtual void transitionToCommittedForNewPage(); |
115 virtual PassRefPtr<WebCore::Frame> createFrame(const WebCore::KURL&, const W
TF::String& name, const WTF::String& referrer, WebCore::HTMLFrameOwnerElement*); | 116 virtual PassRefPtr<WebCore::Frame> createFrame(const WebCore::KURL&, const W
TF::String& name, const WTF::String& referrer, WebCore::HTMLFrameOwnerElement*); |
116 virtual PassRefPtr<WebCore::Widget> createPlugin( | 117 virtual PassRefPtr<WebCore::Widget> createPlugin( |
117 const WebCore::IntSize&, WebCore::HTMLPlugInElement*, const WebCore::KUR
L&, | 118 const WebCore::IntSize&, WebCore::HTMLPlugInElement*, const WebCore::KUR
L&, |
118 const Vector<WTF::String>&, const Vector<WTF::String>&, | 119 const Vector<WTF::String>&, const Vector<WTF::String>&, |
119 const WTF::String&, bool loadManually); | 120 const WTF::String&, bool loadManually); |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(); | 159 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(); |
159 | 160 |
160 // The WebFrame that owns this object and manages its lifetime. Therefore, | 161 // The WebFrame that owns this object and manages its lifetime. Therefore, |
161 // the web frame object is guaranteed to exist. | 162 // the web frame object is guaranteed to exist. |
162 WebFrameImpl* m_webFrame; | 163 WebFrameImpl* m_webFrame; |
163 }; | 164 }; |
164 | 165 |
165 } // namespace WebKit | 166 } // namespace WebKit |
166 | 167 |
167 #endif | 168 #endif |
OLD | NEW |