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