| 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 27 matching lines...) Expand all Loading... |
| 38 #include "platform/weborigin/KURL.h" | 38 #include "platform/weborigin/KURL.h" |
| 39 #include "public/platform/WebColor.h" | 39 #include "public/platform/WebColor.h" |
| 40 #include "public/web/WebNavigationPolicy.h" | 40 #include "public/web/WebNavigationPolicy.h" |
| 41 #include "wtf/PassOwnPtr.h" | 41 #include "wtf/PassOwnPtr.h" |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 class AXObject; | 44 class AXObject; |
| 45 class ColorChooser; | 45 class ColorChooser; |
| 46 class ColorChooserClient; | 46 class ColorChooserClient; |
| 47 class Element; | 47 class Element; |
| 48 class Event; | |
| 49 class FileChooser; | 48 class FileChooser; |
| 50 class GraphicsLayerFactory; | 49 class GraphicsLayerFactory; |
| 51 class HTMLFormControlElement; | 50 class HTMLFormControlElement; |
| 52 class HTMLInputElement; | 51 class HTMLInputElement; |
| 53 class KeyboardEvent; | 52 class KeyboardEvent; |
| 54 class PagePopup; | 53 class PagePopup; |
| 55 class PagePopupClient; | 54 class PagePopupClient; |
| 56 class PopupMenuClient; | 55 class PopupMenuClient; |
| 57 class RenderBox; | |
| 58 class SecurityOrigin; | |
| 59 class DateTimeChooser; | 56 class DateTimeChooser; |
| 60 class DateTimeChooserClient; | 57 class DateTimeChooserClient; |
| 61 class WebViewImpl; | 58 class WebViewImpl; |
| 62 struct WebCursorInfo; | 59 struct WebCursorInfo; |
| 63 struct WebPopupMenuInfo; | |
| 64 struct WindowFeatures; | 60 struct WindowFeatures; |
| 65 | 61 |
| 66 // Handles window-level notifications from WebCore on behalf of a WebView. | 62 // Handles window-level notifications from WebCore on behalf of a WebView. |
| 67 class ChromeClientImpl final : public ChromeClient { | 63 class ChromeClientImpl final : public ChromeClient { |
| 68 public: | 64 public: |
| 69 explicit ChromeClientImpl(WebViewImpl* webView); | 65 explicit ChromeClientImpl(WebViewImpl* webView); |
| 70 virtual ~ChromeClientImpl(); | 66 virtual ~ChromeClientImpl(); |
| 71 | 67 |
| 72 virtual void* webView() const override; | 68 virtual void* webView() const override; |
| 73 | 69 |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 bool m_resizable; | 188 bool m_resizable; |
| 193 | 189 |
| 194 PagePopupDriver* m_pagePopupDriver; | 190 PagePopupDriver* m_pagePopupDriver; |
| 195 }; | 191 }; |
| 196 | 192 |
| 197 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); | 193 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); |
| 198 | 194 |
| 199 } // namespace blink | 195 } // namespace blink |
| 200 | 196 |
| 201 #endif | 197 #endif |
| OLD | NEW |