| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 VisiblePosition modifyMovingForward(TextGranularity); | 239 VisiblePosition modifyMovingForward(TextGranularity); |
| 240 VisiblePosition modifyExtendingLeft(TextGranularity); | 240 VisiblePosition modifyExtendingLeft(TextGranularity); |
| 241 VisiblePosition modifyExtendingBackward(TextGranularity); | 241 VisiblePosition modifyExtendingBackward(TextGranularity); |
| 242 VisiblePosition modifyMovingLeft(TextGranularity); | 242 VisiblePosition modifyMovingLeft(TextGranularity); |
| 243 VisiblePosition modifyMovingBackward(TextGranularity); | 243 VisiblePosition modifyMovingBackward(TextGranularity); |
| 244 | 244 |
| 245 LayoutUnit lineDirectionPointForBlockDirectionNavigation(EPositionType); | 245 LayoutUnit lineDirectionPointForBlockDirectionNavigation(EPositionType); |
| 246 | 246 |
| 247 void notifyAccessibilityForSelectionChange(); | 247 void notifyAccessibilityForSelectionChange(); |
| 248 void notifyCompositorForSelectionChange(); | 248 void notifyCompositorForSelectionChange(); |
| 249 void notifyEventHandlerForSelectionChange(); | |
| 250 | 249 |
| 251 void focusedOrActiveStateChanged(); | 250 void focusedOrActiveStateChanged(); |
| 252 | 251 |
| 253 void caretBlinkTimerFired(Timer<FrameSelection>*); | 252 void caretBlinkTimerFired(Timer<FrameSelection>*); |
| 254 | 253 |
| 255 void setUseSecureKeyboardEntry(bool); | 254 void setUseSecureKeyboardEntry(bool); |
| 256 | 255 |
| 257 void setCaretVisibility(CaretVisibility); | 256 void setCaretVisibility(CaretVisibility); |
| 258 bool shouldBlinkCaret() const; | 257 bool shouldBlinkCaret() const; |
| 259 | 258 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 } | 309 } |
| 311 } // namespace blink | 310 } // namespace blink |
| 312 | 311 |
| 313 #ifndef NDEBUG | 312 #ifndef NDEBUG |
| 314 // Outside the WebCore namespace for ease of invocation from gdb. | 313 // Outside the WebCore namespace for ease of invocation from gdb. |
| 315 void showTree(const blink::FrameSelection&); | 314 void showTree(const blink::FrameSelection&); |
| 316 void showTree(const blink::FrameSelection*); | 315 void showTree(const blink::FrameSelection*); |
| 317 #endif | 316 #endif |
| 318 | 317 |
| 319 #endif // FrameSelection_h | 318 #endif // FrameSelection_h |
| OLD | NEW |