OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
172 virtual WebRange markedRange() const; | 172 virtual WebRange markedRange() const; |
173 virtual bool firstRectForCharacterRange(unsigned location, unsigned length, WebRect&) const; | 173 virtual bool firstRectForCharacterRange(unsigned location, unsigned length, WebRect&) const; |
174 virtual size_t characterIndexForPoint(const WebPoint&) const; | 174 virtual size_t characterIndexForPoint(const WebPoint&) const; |
175 virtual bool executeCommand(const WebString&, const WebNode& = WebNode()); | 175 virtual bool executeCommand(const WebString&, const WebNode& = WebNode()); |
176 virtual bool executeCommand(const WebString&, const WebString& value); | 176 virtual bool executeCommand(const WebString&, const WebString& value); |
177 virtual bool isCommandEnabled(const WebString&) const; | 177 virtual bool isCommandEnabled(const WebString&) const; |
178 virtual void enableContinuousSpellChecking(bool); | 178 virtual void enableContinuousSpellChecking(bool); |
179 virtual bool isContinuousSpellCheckingEnabled() const; | 179 virtual bool isContinuousSpellCheckingEnabled() const; |
180 virtual void requestTextChecking(const WebElement&); | 180 virtual void requestTextChecking(const WebElement&); |
181 virtual void replaceMisspelledRange(const WebString&); | 181 virtual void replaceMisspelledRange(const WebString&); |
182 virtual void removeSpellingMarkers(); | |
tkent
2013/04/18 21:39:15
nit: We should append OVERRIDE.
This is a minor i
| |
182 virtual bool hasSelection() const; | 183 virtual bool hasSelection() const; |
183 virtual WebRange selectionRange() const; | 184 virtual WebRange selectionRange() const; |
184 virtual WebString selectionAsText() const; | 185 virtual WebString selectionAsText() const; |
185 virtual WebString selectionAsMarkup() const; | 186 virtual WebString selectionAsMarkup() const; |
186 virtual bool selectWordAroundCaret(); | 187 virtual bool selectWordAroundCaret(); |
187 virtual void selectRange(const WebPoint& base, const WebPoint& extent); | 188 virtual void selectRange(const WebPoint& base, const WebPoint& extent); |
188 virtual void selectRange(const WebRange&); | 189 virtual void selectRange(const WebRange&); |
189 virtual void moveCaretSelectionTowardsWindowPoint(const WebPoint&); | 190 virtual void moveCaretSelectionTowardsWindowPoint(const WebPoint&); |
190 virtual int printBegin(const WebPrintParams&, | 191 virtual int printBegin(const WebPrintParams&, |
191 const WebNode& constrainToNode, | 192 const WebNode& constrainToNode, |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
488 long long m_identifier; | 489 long long m_identifier; |
489 | 490 |
490 // Ensure we don't overwrite valid history data during same document loads | 491 // Ensure we don't overwrite valid history data during same document loads |
491 // from HistoryItems | 492 // from HistoryItems |
492 bool m_inSameDocumentHistoryLoad; | 493 bool m_inSameDocumentHistoryLoad; |
493 }; | 494 }; |
494 | 495 |
495 } // namespace WebKit | 496 } // namespace WebKit |
496 | 497 |
497 #endif | 498 #endif |
OLD | NEW |