| 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 #pragma warning(push, 0) | 8 #include "base/compiler_specific.h" |
| 9 |
| 10 MSVC_PUSH_WARNING_LEVEL(0); |
| 9 #include "FrameLoaderClient.h" | 11 #include "FrameLoaderClient.h" |
| 10 #pragma warning(pop) | 12 MSVC_POP_WARNING(); |
| 11 | 13 |
| 12 #include "googleurl/src/gurl.h" | 14 #include "googleurl/src/gurl.h" |
| 13 #include "webkit/glue/webview_delegate.h" | 15 #include "webkit/glue/webview_delegate.h" |
| 14 #include "webkit/glue/window_open_disposition.h" | 16 #include "webkit/glue/window_open_disposition.h" |
| 15 | 17 |
| 16 namespace WebCore { | 18 namespace WebCore { |
| 17 class Frame; | 19 class Frame; |
| 18 class Widget; | 20 class Widget; |
| 19 } | 21 } |
| 20 | 22 |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 // Indicates if we need to send over the initial notification to the plugin | 256 // Indicates if we need to send over the initial notification to the plugin |
| 255 // which specifies that the plugin should be ready to accept data. | 257 // which specifies that the plugin should be ready to accept data. |
| 256 bool sent_initial_response_to_plugin_; | 258 bool sent_initial_response_to_plugin_; |
| 257 | 259 |
| 258 // The disposition to use for the next call to dispatchCreatePage. | 260 // The disposition to use for the next call to dispatchCreatePage. |
| 259 WindowOpenDisposition next_window_open_disposition_; | 261 WindowOpenDisposition next_window_open_disposition_; |
| 260 }; | 262 }; |
| 261 | 263 |
| 262 #endif // #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ | 264 #endif // #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ |
| 263 | 265 |
| OLD | NEW |