| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, 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 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 class HTMLFormControlElement; | 57 class HTMLFormControlElement; |
| 58 class HTMLInputElement; | 58 class HTMLInputElement; |
| 59 class IntRect; | 59 class IntRect; |
| 60 class LocalFrame; | 60 class LocalFrame; |
| 61 class Node; | 61 class Node; |
| 62 class Page; | 62 class Page; |
| 63 class PagePopup; | 63 class PagePopup; |
| 64 class PagePopupClient; | 64 class PagePopupClient; |
| 65 class PagePopupDriver; | 65 class PagePopupDriver; |
| 66 class PopupMenuClient; | 66 class PopupMenuClient; |
| 67 class SecurityOrigin; | |
| 68 class Widget; | |
| 69 | 67 |
| 70 struct DateTimeChooserParameters; | 68 struct DateTimeChooserParameters; |
| 71 struct FrameLoadRequest; | 69 struct FrameLoadRequest; |
| 72 struct GraphicsDeviceAdapter; | 70 struct GraphicsDeviceAdapter; |
| 73 struct ViewportDescription; | 71 struct ViewportDescription; |
| 74 struct WindowFeatures; | 72 struct WindowFeatures; |
| 75 | 73 |
| 76 class ChromeClient { | 74 class ChromeClient { |
| 77 public: | 75 public: |
| 78 virtual void chromeDestroyed() = 0; | 76 virtual void chromeDestroyed() = 0; |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 virtual void willSetInputMethodState() { } | 231 virtual void willSetInputMethodState() { } |
| 234 virtual void didUpdateTextOfFocusedElementByNonUserInput() { } | 232 virtual void didUpdateTextOfFocusedElementByNonUserInput() { } |
| 235 virtual void showImeIfNeeded() { } | 233 virtual void showImeIfNeeded() { } |
| 236 | 234 |
| 237 protected: | 235 protected: |
| 238 virtual ~ChromeClient() { } | 236 virtual ~ChromeClient() { } |
| 239 }; | 237 }; |
| 240 | 238 |
| 241 } | 239 } |
| 242 #endif // ChromeClient_h | 240 #endif // ChromeClient_h |
| OLD | NEW |