| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 "FrameLoaderClient.h" | 8 #include "FrameLoaderClient.h" |
| 9 #include "KURL.h" | 9 #include "KURL.h" |
| 10 #include <wtf/PassOwnPtr.h> | 10 #include <wtf/PassOwnPtr.h> |
| 11 #include <wtf/RefPtr.h> | 11 #include <wtf/RefPtr.h> |
| 12 | 12 |
| 13 #include "webkit/api/public/WebNavigationPolicy.h" | 13 #include "webkit/api/public/WebNavigationPolicy.h" |
| 14 #include "webkit/glue/webview_delegate.h" | |
| 15 | 14 |
| 16 class WebFrameImpl; | 15 class WebFrameImpl; |
| 17 | 16 |
| 18 namespace WebKit { | 17 namespace WebKit { |
| 19 class WebPluginContainerImpl; | 18 class WebPluginContainerImpl; |
| 20 class WebPluginLoadObserver; | 19 class WebPluginLoadObserver; |
| 21 } | 20 } |
| 22 | 21 |
| 23 class WebFrameLoaderClient : public WebCore::FrameLoaderClient { | 22 class WebFrameLoaderClient : public WebCore::FrameLoaderClient { |
| 24 public: | 23 public: |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 | 235 |
| 237 // Indicates if we need to send over the initial notification to the plugin | 236 // Indicates if we need to send over the initial notification to the plugin |
| 238 // which specifies that the plugin should be ready to accept data. | 237 // which specifies that the plugin should be ready to accept data. |
| 239 bool sent_initial_response_to_plugin_; | 238 bool sent_initial_response_to_plugin_; |
| 240 | 239 |
| 241 // The navigation policy to use for the next call to dispatchCreatePage. | 240 // The navigation policy to use for the next call to dispatchCreatePage. |
| 242 WebKit::WebNavigationPolicy next_navigation_policy_; | 241 WebKit::WebNavigationPolicy next_navigation_policy_; |
| 243 }; | 242 }; |
| 244 | 243 |
| 245 #endif // #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H_ | 244 #endif // #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H_ |
| OLD | NEW |