Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: sky/engine/core/rendering/HitTestResult.h

Issue 830273006: Delete document marker related invalidation code. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/engine/core/page/EventHandler.cpp ('k') | sky/engine/core/rendering/HitTestResult.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Apple Computer, Inc. 2 * Copyright (C) 2006 Apple Computer, Inc.
3 * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 92
93 const HitTestLocation& hitTestLocation() const { return m_hitTestLocation; } 93 const HitTestLocation& hitTestLocation() const { return m_hitTestLocation; }
94 94
95 void setInnerNode(Node*); 95 void setInnerNode(Node*);
96 void setInnerNonSharedNode(Node*); 96 void setInnerNonSharedNode(Node*);
97 void setURLElement(Element*); 97 void setURLElement(Element*);
98 void setScrollbar(Scrollbar*); 98 void setScrollbar(Scrollbar*);
99 void setIsOverWidget(bool b) { m_isOverWidget = b; } 99 void setIsOverWidget(bool b) { m_isOverWidget = b; }
100 100
101 bool isSelected() const; 101 bool isSelected() const;
102 String spellingToolTip(TextDirection&) const;
103 String title(TextDirection&) const; 102 String title(TextDirection&) const;
104 const AtomicString& altDisplayString() const; 103 const AtomicString& altDisplayString() const;
105 Image* image() const; 104 Image* image() const;
106 IntRect imageRect() const; 105 IntRect imageRect() const;
107 KURL absoluteImageURL() const; 106 KURL absoluteImageURL() const;
108 // This variant of absoluteImageURL will also convert <canvas> elements 107 // This variant of absoluteImageURL will also convert <canvas> elements
109 // to huge image data URLs (very expensive). 108 // to huge image data URLs (very expensive).
110 KURL absoluteImageURLIncludingCanvasDataURL() const; 109 KURL absoluteImageURLIncludingCanvasDataURL() const;
111 KURL absoluteLinkURL() const; 110 KURL absoluteLinkURL() const;
112 String textContent() const; 111 String textContent() const;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 RefPtr<Element> m_innerURLElement; 147 RefPtr<Element> m_innerURLElement;
149 RefPtr<Scrollbar> m_scrollbar; 148 RefPtr<Scrollbar> m_scrollbar;
150 bool m_isOverWidget; // Returns true if we are over a widget. 149 bool m_isOverWidget; // Returns true if we are over a widget.
151 150
152 mutable OwnPtr<NodeSet> m_rectBasedTestResult; 151 mutable OwnPtr<NodeSet> m_rectBasedTestResult;
153 }; 152 };
154 153
155 } // namespace blink 154 } // namespace blink
156 155
157 #endif // SKY_ENGINE_CORE_RENDERING_HITTESTRESULT_H_ 156 #endif // SKY_ENGINE_CORE_RENDERING_HITTESTRESULT_H_
OLDNEW
« no previous file with comments | « sky/engine/core/page/EventHandler.cpp ('k') | sky/engine/core/rendering/HitTestResult.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698