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

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

Issue 15071004: Plumb edit commands to plugins (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Alternative approach that gives plugin chance to override Created 7 years, 7 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 | Annotate | Revision Log
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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 virtual bool willSuppressOpenerInNewFrame() const; 166 virtual bool willSuppressOpenerInNewFrame() const;
167 virtual void replaceSelection(const WebString&); 167 virtual void replaceSelection(const WebString&);
168 virtual void insertText(const WebString&); 168 virtual void insertText(const WebString&);
169 virtual void setMarkedText(const WebString&, unsigned location, unsigned len gth); 169 virtual void setMarkedText(const WebString&, unsigned location, unsigned len gth);
170 virtual void unmarkText(); 170 virtual void unmarkText();
171 virtual bool hasMarkedText() const; 171 virtual bool hasMarkedText() const;
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, const WebNode& = WebNode());
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(); 182 virtual void removeSpellingMarkers();
183 virtual bool hasSelection() const; 183 virtual bool hasSelection() const;
184 virtual WebRange selectionRange() const; 184 virtual WebRange selectionRange() const;
185 virtual WebString selectionAsText() const; 185 virtual WebString selectionAsText() const;
186 virtual WebString selectionAsMarkup() const; 186 virtual WebString selectionAsMarkup() const;
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 long long m_identifier; 489 long long m_identifier;
490 490
491 // 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
492 // from HistoryItems 492 // from HistoryItems
493 bool m_inSameDocumentHistoryLoad; 493 bool m_inSameDocumentHistoryLoad;
494 }; 494 };
495 495
496 } // namespace WebKit 496 } // namespace WebKit
497 497
498 #endif 498 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698