| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 */ | 30 */ |
| 31 | 31 |
| 32 #ifndef ChromeClientImpl_h | 32 #ifndef ChromeClientImpl_h |
| 33 #define ChromeClientImpl_h | 33 #define ChromeClientImpl_h |
| 34 | 34 |
| 35 #include "ChromeClient.h" | 35 #include "ChromeClient.h" |
| 36 #include "NavigatorContentUtilsClient.h" | 36 #include "NavigatorContentUtilsClient.h" |
| 37 #include "PopupMenu.h" | |
| 38 #include "SearchPopupMenu.h" | |
| 39 #include "WebNavigationPolicy.h" | 37 #include "WebNavigationPolicy.h" |
| 38 #include "core/platform/PopupMenu.h" |
| 39 #include "core/platform/SearchPopupMenu.h" |
| 40 #include <public/WebColor.h> | 40 #include <public/WebColor.h> |
| 41 #include <wtf/PassOwnPtr.h> | 41 #include <wtf/PassOwnPtr.h> |
| 42 | 42 |
| 43 namespace WebCore { | 43 namespace WebCore { |
| 44 class AccessibilityObject; | 44 class AccessibilityObject; |
| 45 class ColorChooser; | 45 class ColorChooser; |
| 46 class ColorChooserClient; | 46 class ColorChooserClient; |
| 47 class Element; | 47 class Element; |
| 48 class FileChooser; | 48 class FileChooser; |
| 49 class GraphicsLayerFactory; | 49 class GraphicsLayerFactory; |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 private: | 247 private: |
| 248 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); | 248 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); |
| 249 | 249 |
| 250 WebViewImpl* m_webView; | 250 WebViewImpl* m_webView; |
| 251 }; | 251 }; |
| 252 #endif | 252 #endif |
| 253 | 253 |
| 254 } // namespace WebKit | 254 } // namespace WebKit |
| 255 | 255 |
| 256 #endif | 256 #endif |
| OLD | NEW |