| 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 27 matching lines...) Expand all Loading... |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 class ColorChooser; | 40 class ColorChooser; |
| 41 class ColorChooserClient; | 41 class ColorChooserClient; |
| 42 class DateTimeChooser; | 42 class DateTimeChooser; |
| 43 class DateTimeChooserClient; | 43 class DateTimeChooserClient; |
| 44 class Element; | 44 class Element; |
| 45 class FloatRect; | 45 class FloatRect; |
| 46 class Frame; | 46 class Frame; |
| 47 class GraphicsContext; | 47 class GraphicsContext; |
| 48 class GraphicsLayer; | |
| 49 class GraphicsLayerFactory; | |
| 50 class HitTestResult; | 48 class HitTestResult; |
| 51 class IntRect; | 49 class IntRect; |
| 52 class LocalFrame; | 50 class LocalFrame; |
| 53 class Node; | 51 class Node; |
| 54 class Page; | 52 class Page; |
| 55 class Widget; | 53 class Widget; |
| 56 | 54 |
| 57 struct DateTimeChooserParameters; | 55 struct DateTimeChooserParameters; |
| 58 struct GraphicsDeviceAdapter; | 56 struct GraphicsDeviceAdapter; |
| 59 | 57 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 virtual void willSetInputMethodState() { } | 120 virtual void willSetInputMethodState() { } |
| 123 virtual void didUpdateTextOfFocusedElementByNonUserInput() { } | 121 virtual void didUpdateTextOfFocusedElementByNonUserInput() { } |
| 124 virtual void showImeIfNeeded() { } | 122 virtual void showImeIfNeeded() { } |
| 125 | 123 |
| 126 protected: | 124 protected: |
| 127 virtual ~ChromeClient() { } | 125 virtual ~ChromeClient() { } |
| 128 }; | 126 }; |
| 129 | 127 |
| 130 } | 128 } |
| 131 #endif // SKY_ENGINE_CORE_PAGE_CHROMECLIENT_H_ | 129 #endif // SKY_ENGINE_CORE_PAGE_CHROMECLIENT_H_ |
| OLD | NEW |