| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef WEBKIT_GLUE_WEBFRAME_IMPL_H_ | 26 #ifndef WEBKIT_GLUE_WEBFRAME_IMPL_H_ |
| 27 #define WEBKIT_GLUE_WEBFRAME_IMPL_H_ | 27 #define WEBKIT_GLUE_WEBFRAME_IMPL_H_ |
| 28 | 28 |
| 29 #include <string> | 29 #include <string> |
| 30 | 30 |
| 31 #include "base/basictypes.h" | 31 #include "base/basictypes.h" |
| 32 #include "base/compiler_specific.h" |
| 32 #include "base/gfx/platform_canvas.h" | 33 #include "base/gfx/platform_canvas.h" |
| 33 #include "base/scoped_ptr.h" | 34 #include "base/scoped_ptr.h" |
| 34 #include "base/task.h" | 35 #include "base/task.h" |
| 35 #include "webkit/glue/webdatasource_impl.h" | 36 #include "webkit/glue/webdatasource_impl.h" |
| 36 #include "webkit/glue/webframe.h" | 37 #include "webkit/glue/webframe.h" |
| 37 #include "webkit/glue/webframeloaderclient_impl.h" | 38 #include "webkit/glue/webframeloaderclient_impl.h" |
| 38 #include "webkit/glue/webplugin_delegate.h" | 39 #include "webkit/glue/webplugin_delegate.h" |
| 39 #include "webkit/glue/webview_delegate.h" | 40 #include "webkit/glue/webview_delegate.h" |
| 40 | 41 |
| 41 #pragma warning(push, 0) | 42 MSVC_PUSH_WARNING_LEVEL(0); |
| 42 #include "ResourceHandleClient.h" | 43 #include "ResourceHandleClient.h" |
| 43 #include "Frame.h" | 44 #include "Frame.h" |
| 44 #include "PlatformString.h" | 45 #include "PlatformString.h" |
| 45 #pragma warning(pop) | 46 MSVC_POP_WARNING(); |
| 46 | 47 |
| 47 class AltErrorPageResourceFetcher; | 48 class AltErrorPageResourceFetcher; |
| 48 class WebErrorImpl; | 49 class WebErrorImpl; |
| 49 class WebHistoryItemImpl; | 50 class WebHistoryItemImpl; |
| 50 class WebRequest; | 51 class WebRequest; |
| 51 class WebView; | 52 class WebView; |
| 52 class WebViewImpl; | 53 class WebViewImpl; |
| 53 class WebTextInput; | 54 class WebTextInput; |
| 54 class WebTextInputImpl; | 55 class WebTextInputImpl; |
| 55 | 56 |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 // In "printing" mode. Used as a state check. | 431 // In "printing" mode. Used as a state check. |
| 431 bool printing_; | 432 bool printing_; |
| 432 | 433 |
| 433 // For each printed page, the view of the document in pixels. | 434 // For each printed page, the view of the document in pixels. |
| 434 Vector<WebCore::IntRect> pages_; | 435 Vector<WebCore::IntRect> pages_; |
| 435 | 436 |
| 436 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); | 437 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); |
| 437 }; | 438 }; |
| 438 | 439 |
| 439 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ | 440 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ |
| OLD | NEW |