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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 virtual void postProgressFinishedNotification(); | 104 virtual void postProgressFinishedNotification(); |
105 virtual void loadURLExternally(const WebCore::ResourceRequest&, WebCore::Nav
igationPolicy, const String& suggestedName = String()); | 105 virtual void loadURLExternally(const WebCore::ResourceRequest&, WebCore::Nav
igationPolicy, const String& suggestedName = String()); |
106 virtual void didReceiveDocumentData(const char*, int); | 106 virtual void didReceiveDocumentData(const char*, int); |
107 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const; | 107 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const; |
108 virtual bool shouldStopLoadingForHistoryItem(WebCore::HistoryItem*) const; | 108 virtual bool shouldStopLoadingForHistoryItem(WebCore::HistoryItem*) const; |
109 virtual void didAccessInitialDocument(); | 109 virtual void didAccessInitialDocument(); |
110 virtual void didDisownOpener(); | 110 virtual void didDisownOpener(); |
111 virtual void didDisplayInsecureContent(); | 111 virtual void didDisplayInsecureContent(); |
112 virtual void didRunInsecureContent(WebCore::SecurityOrigin*, const WebCore::
KURL& insecureURL); | 112 virtual void didRunInsecureContent(WebCore::SecurityOrigin*, const WebCore::
KURL& insecureURL); |
113 virtual void didDetectXSS(const WebCore::KURL&, bool didBlockEntirePage); | 113 virtual void didDetectXSS(const WebCore::KURL&, bool didBlockEntirePage); |
| 114 virtual void selectorMatchChanged(const Vector<String>& addedSelectors, cons
t Vector<String>& removedSelectors); |
114 virtual WebCore::ResourceError cancelledError(const WebCore::ResourceRequest
&); | 115 virtual WebCore::ResourceError cancelledError(const WebCore::ResourceRequest
&); |
115 virtual WebCore::ResourceError cannotShowURLError(const WebCore::ResourceReq
uest&); | 116 virtual WebCore::ResourceError cannotShowURLError(const WebCore::ResourceReq
uest&); |
116 virtual WebCore::ResourceError interruptedForPolicyChangeError(const WebCore
::ResourceRequest&); | 117 virtual WebCore::ResourceError interruptedForPolicyChangeError(const WebCore
::ResourceRequest&); |
117 virtual WebCore::ResourceError cannotShowMIMETypeError(const WebCore::Resour
ceResponse&); | 118 virtual WebCore::ResourceError cannotShowMIMETypeError(const WebCore::Resour
ceResponse&); |
118 virtual WebCore::ResourceError fileDoesNotExistError(const WebCore::Resource
Response&); | 119 virtual WebCore::ResourceError fileDoesNotExistError(const WebCore::Resource
Response&); |
119 virtual WebCore::ResourceError pluginWillHandleLoadError(const WebCore::Reso
urceResponse&); | 120 virtual WebCore::ResourceError pluginWillHandleLoadError(const WebCore::Reso
urceResponse&); |
120 virtual bool shouldFallBack(const WebCore::ResourceError&); | 121 virtual bool shouldFallBack(const WebCore::ResourceError&); |
121 virtual bool canShowMIMEType(const WTF::String& MIMEType) const; | 122 virtual bool canShowMIMEType(const WTF::String& MIMEType) const; |
122 virtual WTF::String generatedMIMETypeForURLScheme(const WTF::String& URLSche
me) const; | 123 virtual WTF::String generatedMIMETypeForURLScheme(const WTF::String& URLSche
me) const; |
123 virtual void didFinishLoad(); | 124 virtual void didFinishLoad(); |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(); | 173 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(); |
173 | 174 |
174 // The WebFrame that owns this object and manages its lifetime. Therefore, | 175 // The WebFrame that owns this object and manages its lifetime. Therefore, |
175 // the web frame object is guaranteed to exist. | 176 // the web frame object is guaranteed to exist. |
176 WebFrameImpl* m_webFrame; | 177 WebFrameImpl* m_webFrame; |
177 }; | 178 }; |
178 | 179 |
179 } // namespace WebKit | 180 } // namespace WebKit |
180 | 181 |
181 #endif | 182 #endif |
OLD | NEW |