| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 void replaceSelectionWithFragment(DocumentFragment*, | 254 void replaceSelectionWithFragment(DocumentFragment*, |
| 255 bool selectReplacement, | 255 bool selectReplacement, |
| 256 bool smartReplace, | 256 bool smartReplace, |
| 257 bool matchStyle, | 257 bool matchStyle, |
| 258 InputEvent::InputType); | 258 InputEvent::InputType); |
| 259 void replaceSelectionWithText(const String&, | 259 void replaceSelectionWithText(const String&, |
| 260 bool selectReplacement, | 260 bool selectReplacement, |
| 261 bool smartReplace, | 261 bool smartReplace, |
| 262 InputEvent::InputType); | 262 InputEvent::InputType); |
| 263 | 263 |
| 264 // TODO(xiaochengh): Replace |bool| parameters by |enum|. | 264 // Implementation of WebLocalFrameImpl::replaceSelection. |
| 265 void replaceSelection(const String&); |
| 266 |
| 265 void replaceSelectionAfterDragging(DocumentFragment*, | 267 void replaceSelectionAfterDragging(DocumentFragment*, |
| 266 InsertMode, | 268 InsertMode, |
| 267 DragSourceType); | 269 DragSourceType); |
| 268 | 270 |
| 269 // Return false if frame was destroyed by event handler, should stop executing | 271 // Return false if frame was destroyed by event handler, should stop executing |
| 270 // remaining actions. | 272 // remaining actions. |
| 271 bool deleteSelectionAfterDraggingWithEvents( | 273 bool deleteSelectionAfterDraggingWithEvents( |
| 272 Element* dragSource, | 274 Element* dragSource, |
| 273 DeleteMode, | 275 DeleteMode, |
| 274 const Position& referenceMovePosition); | 276 const Position& referenceMovePosition); |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 m_mark = selection; | 364 m_mark = selection; |
| 363 } | 365 } |
| 364 | 366 |
| 365 inline bool Editor::markedTextMatchesAreHighlighted() const { | 367 inline bool Editor::markedTextMatchesAreHighlighted() const { |
| 366 return m_areMarkedTextMatchesHighlighted; | 368 return m_areMarkedTextMatchesHighlighted; |
| 367 } | 369 } |
| 368 | 370 |
| 369 } // namespace blink | 371 } // namespace blink |
| 370 | 372 |
| 371 #endif // Editor_h | 373 #endif // Editor_h |
| OLD | NEW |