| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ | 5 #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ |
| 6 #define WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ | 6 #define WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 | 9 |
| 10 MSVC_PUSH_WARNING_LEVEL(0); | 10 MSVC_PUSH_WARNING_LEVEL(0); |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 const WebCore::KURL&, | 178 const WebCore::KURL&, |
| 179 const WTF::Vector<WebCore::String>&, | 179 const WTF::Vector<WebCore::String>&, |
| 180 const WTF::Vector<WebCore::String>&, | 180 const WTF::Vector<WebCore::String>&, |
| 181 const WebCore::String&, | 181 const WebCore::String&, |
| 182 bool loadManually); | 182 bool loadManually); |
| 183 virtual void redirectDataToPlugin(WebCore::Widget* pluginWidget); | 183 virtual void redirectDataToPlugin(WebCore::Widget* pluginWidget); |
| 184 | 184 |
| 185 virtual WebCore::Widget* createJavaAppletWidget( | 185 virtual WebCore::Widget* createJavaAppletWidget( |
| 186 const WebCore::IntSize&, | 186 const WebCore::IntSize&, |
| 187 WebCore::HTMLAppletElement*, | 187 WebCore::HTMLAppletElement*, |
| 188 const WebCore::KURL& baseURL, | 188 const WebCore::KURL& /* base_url */, |
| 189 const WTF::Vector<WebCore::String>& paramNames, | 189 const WTF::Vector<WebCore::String>& paramNames, |
| 190 const WTF::Vector<WebCore::String>& paramValues); | 190 const WTF::Vector<WebCore::String>& paramValues); |
| 191 | 191 |
| 192 virtual WebCore::ObjectContentType objectContentType(const WebCore::KURL& url, | 192 virtual WebCore::ObjectContentType objectContentType(const WebCore::KURL& url, |
| 193 const WebCore::String& mimeType); | 193 const WebCore::String& mimeType); |
| 194 virtual WebCore::String overrideMediaType() const; | 194 virtual WebCore::String overrideMediaType() const; |
| 195 | 195 |
| 196 virtual void didPerformFirstNavigation() const; | 196 virtual void didPerformFirstNavigation() const; |
| 197 | 197 |
| 198 virtual void registerForIconNotification(bool listen = true); | 198 virtual void registerForIconNotification(bool listen = true); |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 WebPluginContainer* plugin_widget_; | 250 WebPluginContainer* plugin_widget_; |
| 251 // Indicates if we need to send over the initial notification to the plugin | 251 // Indicates if we need to send over the initial notification to the plugin |
| 252 // which specifies that the plugin should be ready to accept data. | 252 // which specifies that the plugin should be ready to accept data. |
| 253 bool sent_initial_response_to_plugin_; | 253 bool sent_initial_response_to_plugin_; |
| 254 | 254 |
| 255 // The disposition to use for the next call to dispatchCreatePage. | 255 // The disposition to use for the next call to dispatchCreatePage. |
| 256 WindowOpenDisposition next_window_open_disposition_; | 256 WindowOpenDisposition next_window_open_disposition_; |
| 257 }; | 257 }; |
| 258 | 258 |
| 259 #endif // #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ | 259 #endif // #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ |
| OLD | NEW |