| 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 25 matching lines...) Expand all Loading... |
| 36 #include "sky/engine/platform/weborigin/KURL.h" | 36 #include "sky/engine/platform/weborigin/KURL.h" |
| 37 #include "sky/engine/public/platform/WebColor.h" | 37 #include "sky/engine/public/platform/WebColor.h" |
| 38 #include "sky/engine/public/web/WebNavigationPolicy.h" | 38 #include "sky/engine/public/web/WebNavigationPolicy.h" |
| 39 #include "sky/engine/wtf/PassOwnPtr.h" | 39 #include "sky/engine/wtf/PassOwnPtr.h" |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 class ColorChooser; | 42 class ColorChooser; |
| 43 class ColorChooserClient; | 43 class ColorChooserClient; |
| 44 class Element; | 44 class Element; |
| 45 class Event; | 45 class Event; |
| 46 class GraphicsLayerFactory; | |
| 47 class KeyboardEvent; | 46 class KeyboardEvent; |
| 48 class RenderBox; | 47 class RenderBox; |
| 49 class DateTimeChooser; | 48 class DateTimeChooser; |
| 50 class DateTimeChooserClient; | 49 class DateTimeChooserClient; |
| 51 class WebViewImpl; | 50 class WebViewImpl; |
| 52 struct WebCursorInfo; | 51 struct WebCursorInfo; |
| 53 | 52 |
| 54 // Handles window-level notifications from WebCore on behalf of a WebView. | 53 // Handles window-level notifications from WebCore on behalf of a WebView. |
| 55 class ChromeClientImpl final : public ChromeClient { | 54 class ChromeClientImpl final : public ChromeClient { |
| 56 public: | 55 public: |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 void setCursor(const WebCursorInfo&); | 108 void setCursor(const WebCursorInfo&); |
| 110 | 109 |
| 111 WebViewImpl* m_webView; // weak pointer | 110 WebViewImpl* m_webView; // weak pointer |
| 112 }; | 111 }; |
| 113 | 112 |
| 114 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); | 113 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); |
| 115 | 114 |
| 116 } // namespace blink | 115 } // namespace blink |
| 117 | 116 |
| 118 #endif // SKY_ENGINE_WEB_CHROMECLIENTIMPL_H_ | 117 #endif // SKY_ENGINE_WEB_CHROMECLIENTIMPL_H_ |
| OLD | NEW |