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

Side by Side Diff: third_party/WebKit/Source/core/layout/HitTestResult.h

Issue 2059093002: Get rid of useless function HitTestResult::spellingToolTip() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 2016-06-13T14:47:06 Created 4 years, 6 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 | « no previous file | third_party/WebKit/Source/core/layout/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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 const HitTestLocation& hitTestLocation() const { return m_hitTestLocation; } 119 const HitTestLocation& hitTestLocation() const { return m_hitTestLocation; }
120 const HitTestRequest& hitTestRequest() const { return m_hitTestRequest; } 120 const HitTestRequest& hitTestRequest() const { return m_hitTestRequest; }
121 121
122 void setInnerNode(Node*); 122 void setInnerNode(Node*);
123 HTMLAreaElement* imageAreaForImage() const; 123 HTMLAreaElement* imageAreaForImage() const;
124 void setURLElement(Element*); 124 void setURLElement(Element*);
125 void setScrollbar(Scrollbar*); 125 void setScrollbar(Scrollbar*);
126 void setIsOverWidget(bool b) { m_isOverWidget = b; } 126 void setIsOverWidget(bool b) { m_isOverWidget = b; }
127 127
128 bool isSelected() const; 128 bool isSelected() const;
129 String spellingToolTip(TextDirection&) const;
130 String title(TextDirection&) const; 129 String title(TextDirection&) const;
131 const AtomicString& altDisplayString() const; 130 const AtomicString& altDisplayString() const;
132 Image* image() const; 131 Image* image() const;
133 IntRect imageRect() const; 132 IntRect imageRect() const;
134 KURL absoluteImageURL() const; 133 KURL absoluteImageURL() const;
135 KURL absoluteMediaURL() const; 134 KURL absoluteMediaURL() const;
136 KURL absoluteLinkURL() const; 135 KURL absoluteLinkURL() const;
137 String textContent() const; 136 String textContent() const;
138 bool isLiveLink() const; 137 bool isLiveLink() const;
139 bool isMisspelled() const; 138 bool isMisspelled() const;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 bool m_isOverWidget; // Returns true if we are over a widget (and not in the border/padding area of a LayoutPart for example). 179 bool m_isOverWidget; // Returns true if we are over a widget (and not in the border/padding area of a LayoutPart for example).
181 180
182 mutable Member<NodeSet> m_listBasedTestResult; 181 mutable Member<NodeSet> m_listBasedTestResult;
183 }; 182 };
184 183
185 } // namespace blink 184 } // namespace blink
186 185
187 WTF_ALLOW_CLEAR_UNUSED_SLOTS_WITH_MEM_FUNCTIONS(blink::HitTestResult); 186 WTF_ALLOW_CLEAR_UNUSED_SLOTS_WITH_MEM_FUNCTIONS(blink::HitTestResult);
188 187
189 #endif // HitTestResult_h 188 #endif // HitTestResult_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/HitTestResult.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698