| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 virtual void mouseDidMoveOverElement(const HitTestResult&, unsigned modifier
Flags) = 0; | 98 virtual void mouseDidMoveOverElement(const HitTestResult&, unsigned modifier
Flags) = 0; |
| 99 | 99 |
| 100 virtual void setToolTip(const String&, TextDirection) = 0; | 100 virtual void setToolTip(const String&, TextDirection) = 0; |
| 101 | 101 |
| 102 // Allows ports to customize the type of graphics layers created by this pag
e. | 102 // Allows ports to customize the type of graphics layers created by this pag
e. |
| 103 virtual GraphicsLayerFactory* graphicsLayerFactory() const { return 0; } | 103 virtual GraphicsLayerFactory* graphicsLayerFactory() const { return 0; } |
| 104 | 104 |
| 105 // Pass 0 as the GraphicsLayer to detatch the root layer. | 105 // Pass 0 as the GraphicsLayer to detatch the root layer. |
| 106 virtual void attachRootGraphicsLayer(GraphicsLayer*) = 0; | 106 virtual void attachRootGraphicsLayer(GraphicsLayer*) = 0; |
| 107 | 107 |
| 108 virtual void clearCompositedSelectionBounds() { } | |
| 109 | |
| 110 virtual void setTouchAction(TouchAction) = 0; | 108 virtual void setTouchAction(TouchAction) = 0; |
| 111 | 109 |
| 112 virtual String acceptLanguages() = 0; | 110 virtual String acceptLanguages() = 0; |
| 113 | 111 |
| 114 enum DialogType { | 112 enum DialogType { |
| 115 AlertDialog = 0, | 113 AlertDialog = 0, |
| 116 ConfirmDialog = 1, | 114 ConfirmDialog = 1, |
| 117 PromptDialog = 2, | 115 PromptDialog = 2, |
| 118 HTMLDialog = 3 | 116 HTMLDialog = 3 |
| 119 }; | 117 }; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 130 virtual void willSetInputMethodState() { } | 128 virtual void willSetInputMethodState() { } |
| 131 virtual void didUpdateTextOfFocusedElementByNonUserInput() { } | 129 virtual void didUpdateTextOfFocusedElementByNonUserInput() { } |
| 132 virtual void showImeIfNeeded() { } | 130 virtual void showImeIfNeeded() { } |
| 133 | 131 |
| 134 protected: | 132 protected: |
| 135 virtual ~ChromeClient() { } | 133 virtual ~ChromeClient() { } |
| 136 }; | 134 }; |
| 137 | 135 |
| 138 } | 136 } |
| 139 #endif // SKY_ENGINE_CORE_PAGE_CHROMECLIENT_H_ | 137 #endif // SKY_ENGINE_CORE_PAGE_CHROMECLIENT_H_ |
| OLD | NEW |