| 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 12 matching lines...) Expand all Loading... |
| 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/compiler_specific.h" |
| 33 #include "base/gfx/platform_canvas.h" | |
| 34 #include "base/scoped_ptr.h" | 33 #include "base/scoped_ptr.h" |
| 35 #include "base/task.h" | 34 #include "base/task.h" |
| 35 #include "skia/ext/platform_canvas.h" |
| 36 #include "webkit/glue/password_autocomplete_listener.h" | 36 #include "webkit/glue/password_autocomplete_listener.h" |
| 37 #include "webkit/glue/webdatasource_impl.h" | 37 #include "webkit/glue/webdatasource_impl.h" |
| 38 #include "webkit/glue/webframe.h" | 38 #include "webkit/glue/webframe.h" |
| 39 #include "webkit/glue/webframeloaderclient_impl.h" | 39 #include "webkit/glue/webframeloaderclient_impl.h" |
| 40 #include "webkit/glue/webplugin_delegate.h" | 40 #include "webkit/glue/webplugin_delegate.h" |
| 41 #include "webkit/glue/webview_delegate.h" | 41 #include "webkit/glue/webview_delegate.h" |
| 42 | 42 |
| 43 MSVC_PUSH_WARNING_LEVEL(0); | 43 MSVC_PUSH_WARNING_LEVEL(0); |
| 44 #include "ResourceHandleClient.h" | 44 #include "ResourceHandleClient.h" |
| 45 #include "Frame.h" | 45 #include "Frame.h" |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 // The input fields that are interested in edit events and their associated | 458 // The input fields that are interested in edit events and their associated |
| 459 // listeners. | 459 // listeners. |
| 460 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, | 460 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, |
| 461 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; | 461 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; |
| 462 PasswordListenerMap password_listeners_; | 462 PasswordListenerMap password_listeners_; |
| 463 | 463 |
| 464 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); | 464 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); |
| 465 }; | 465 }; |
| 466 | 466 |
| 467 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ | 467 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ |
| OLD | NEW |