| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights
reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 virtual void handleEditableTextContentChanged(Node*) = 0; | 117 virtual void handleEditableTextContentChanged(Node*) = 0; |
| 118 virtual void handleTextFormControlChanged(Node*) = 0; | 118 virtual void handleTextFormControlChanged(Node*) = 0; |
| 119 virtual void handleValueChanged(Node*) = 0; | 119 virtual void handleValueChanged(Node*) = 0; |
| 120 virtual void handleUpdateActiveMenuOption(LayoutMenuList*, int optionIndex)
= 0; | 120 virtual void handleUpdateActiveMenuOption(LayoutMenuList*, int optionIndex)
= 0; |
| 121 virtual void didShowMenuListPopup(LayoutMenuList*) = 0; | 121 virtual void didShowMenuListPopup(LayoutMenuList*) = 0; |
| 122 virtual void didHideMenuListPopup(LayoutMenuList*) = 0; | 122 virtual void didHideMenuListPopup(LayoutMenuList*) = 0; |
| 123 virtual void handleLoadComplete(Document*) = 0; | 123 virtual void handleLoadComplete(Document*) = 0; |
| 124 virtual void handleLayoutComplete(Document*) = 0; | 124 virtual void handleLayoutComplete(Document*) = 0; |
| 125 virtual void handleClicked(Node*) = 0; | 125 virtual void handleClicked(Node*) = 0; |
| 126 | 126 |
| 127 virtual void setCanvasObjectBounds(Element*, const LayoutRect&) = 0; | 127 virtual void setCanvasObjectBounds(HTMLCanvasElement*, Element*, const Layou
tRect&) = 0; |
| 128 | 128 |
| 129 virtual void inlineTextBoxesUpdated(LineLayoutItem) = 0; | 129 virtual void inlineTextBoxesUpdated(LineLayoutItem) = 0; |
| 130 | 130 |
| 131 // Called when the scroll offset changes. | 131 // Called when the scroll offset changes. |
| 132 virtual void handleScrollPositionChanged(FrameView*) = 0; | 132 virtual void handleScrollPositionChanged(FrameView*) = 0; |
| 133 virtual void handleScrollPositionChanged(LayoutObject*) = 0; | 133 virtual void handleScrollPositionChanged(LayoutObject*) = 0; |
| 134 | 134 |
| 135 // Called when scroll bars are added / removed (as the view resizes). | 135 // Called when scroll bars are added / removed (as the view resizes). |
| 136 virtual void handleLayoutComplete(LayoutObject*) = 0; | 136 virtual void handleLayoutComplete(LayoutObject*) = 0; |
| 137 virtual void handleScrolledToAnchor(const Node* anchorNode) = 0; | 137 virtual void handleScrolledToAnchor(const Node* anchorNode) = 0; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 163 private: | 163 private: |
| 164 explicit ScopedAXObjectCache(Document&); | 164 explicit ScopedAXObjectCache(Document&); |
| 165 | 165 |
| 166 Persistent<Document> m_document; | 166 Persistent<Document> m_document; |
| 167 Persistent<AXObjectCache> m_cache; | 167 Persistent<AXObjectCache> m_cache; |
| 168 }; | 168 }; |
| 169 | 169 |
| 170 } // namespace blink | 170 } // namespace blink |
| 171 | 171 |
| 172 #endif | 172 #endif |
| OLD | NEW |