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

Side by Side Diff: Source/WebKit/chromium/src/WebFrameImpl.h

Issue 13896014: Enable removing spelling markers in a frame (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 8 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 | « Source/WebKit/chromium/public/WebFrame.h ('k') | Source/WebKit/chromium/src/WebFrameImpl.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) 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
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
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
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/public/WebFrame.h ('k') | Source/WebKit/chromium/src/WebFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698