| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 virtual unsigned unloadListenerCount() const; | 138 virtual unsigned unloadListenerCount() const; |
| 139 virtual bool isProcessingUserGesture() const; | 139 virtual bool isProcessingUserGesture() const; |
| 140 virtual bool willSuppressOpenerInNewFrame() const; | 140 virtual bool willSuppressOpenerInNewFrame() const; |
| 141 virtual void replaceSelection(const WebString&); | 141 virtual void replaceSelection(const WebString&); |
| 142 virtual void insertText(const WebString&); | 142 virtual void insertText(const WebString&); |
| 143 virtual void setMarkedText(const WebString&, unsigned location, unsigned len
gth); | 143 virtual void setMarkedText(const WebString&, unsigned location, unsigned len
gth); |
| 144 virtual void unmarkText(); | 144 virtual void unmarkText(); |
| 145 virtual bool hasMarkedText() const; | 145 virtual bool hasMarkedText() const; |
| 146 virtual WebRange markedRange() const; | 146 virtual WebRange markedRange() const; |
| 147 virtual bool firstRectForCharacterRange(unsigned location, unsigned length,
WebRect&) const; | 147 virtual bool firstRectForCharacterRange(unsigned location, unsigned length,
WebRect&) const; |
| 148 virtual unsigned characterIndexForPoint(const WebPoint&) const; |
| 148 virtual bool executeCommand(const WebString&); | 149 virtual bool executeCommand(const WebString&); |
| 149 virtual bool executeCommand(const WebString&, const WebString& value); | 150 virtual bool executeCommand(const WebString&, const WebString& value); |
| 150 virtual bool isCommandEnabled(const WebString&) const; | 151 virtual bool isCommandEnabled(const WebString&) const; |
| 151 virtual void enableContinuousSpellChecking(bool); | 152 virtual void enableContinuousSpellChecking(bool); |
| 152 virtual bool isContinuousSpellCheckingEnabled() const; | 153 virtual bool isContinuousSpellCheckingEnabled() const; |
| 153 virtual bool hasSelection() const; | 154 virtual bool hasSelection() const; |
| 154 virtual WebRange selectionRange() const; | 155 virtual WebRange selectionRange() const; |
| 155 virtual WebString selectionAsText() const; | 156 virtual WebString selectionAsText() const; |
| 156 virtual WebString selectionAsMarkup() const; | 157 virtual WebString selectionAsMarkup() const; |
| 157 virtual bool selectWordAroundCaret(); | 158 virtual bool selectWordAroundCaret(); |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 // Keeps a reference to the frame's WebAnimationController. | 398 // Keeps a reference to the frame's WebAnimationController. |
| 398 WebAnimationControllerImpl m_animationController; | 399 WebAnimationControllerImpl m_animationController; |
| 399 | 400 |
| 400 // The identifier of this frame. | 401 // The identifier of this frame. |
| 401 long long m_identifier; | 402 long long m_identifier; |
| 402 }; | 403 }; |
| 403 | 404 |
| 404 } // namespace WebKit | 405 } // namespace WebKit |
| 405 | 406 |
| 406 #endif | 407 #endif |
| OLD | NEW |