| 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 <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 | 11 |
| 12 MSVC_PUSH_WARNING_LEVEL(0); | 12 MSVC_PUSH_WARNING_LEVEL(0); |
| 13 #include "FrameLoaderClient.h" | 13 #include "FrameLoaderClient.h" |
| 14 MSVC_POP_WARNING(); | 14 MSVC_POP_WARNING(); |
| 15 | 15 |
| 16 #include "build/build_config.h" | 16 #include "build/build_config.h" |
| 17 #include "base/scoped_ptr.h" |
| 17 #include "googleurl/src/gurl.h" | 18 #include "googleurl/src/gurl.h" |
| 18 #include "webkit/glue/webview_delegate.h" | 19 #include "webkit/glue/webview_delegate.h" |
| 19 #include "webkit/glue/window_open_disposition.h" | 20 #include "webkit/glue/window_open_disposition.h" |
| 20 | 21 |
| 21 namespace WebCore { | 22 namespace WebCore { |
| 22 class Frame; | 23 class Frame; |
| 23 class HTMLFormElement; | 24 class HTMLFormElement; |
| 24 class Widget; | 25 class Widget; |
| 25 } | 26 } |
| 26 | 27 |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 WebPluginContainer* plugin_widget_; | 249 WebPluginContainer* plugin_widget_; |
| 249 // Indicates if we need to send over the initial notification to the plugin | 250 // Indicates if we need to send over the initial notification to the plugin |
| 250 // which specifies that the plugin should be ready to accept data. | 251 // which specifies that the plugin should be ready to accept data. |
| 251 bool sent_initial_response_to_plugin_; | 252 bool sent_initial_response_to_plugin_; |
| 252 | 253 |
| 253 // The disposition to use for the next call to dispatchCreatePage. | 254 // The disposition to use for the next call to dispatchCreatePage. |
| 254 WindowOpenDisposition next_window_open_disposition_; | 255 WindowOpenDisposition next_window_open_disposition_; |
| 255 }; | 256 }; |
| 256 | 257 |
| 257 #endif // #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ | 258 #endif // #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ |
| OLD | NEW |