| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2006, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2004, 2006, 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 GraphemeCluster, | 53 GraphemeCluster, |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 enum class DeleteDirection { | 56 enum class DeleteDirection { |
| 57 Forward, | 57 Forward, |
| 58 Backward, | 58 Backward, |
| 59 }; | 59 }; |
| 60 | 60 |
| 61 class Document; | 61 class Document; |
| 62 class Element; | 62 class Element; |
| 63 class HTMLBRElement; | |
| 64 class HTMLElement; | 63 class HTMLElement; |
| 65 class HTMLLIElement; | |
| 66 class HTMLSpanElement; | 64 class HTMLSpanElement; |
| 67 class HTMLUListElement; | |
| 68 class Node; | 65 class Node; |
| 69 class Range; | 66 class Range; |
| 70 | 67 |
| 71 // This file contains a set of helper functions used by the editing commands | 68 // This file contains a set of helper functions used by the editing commands |
| 72 | 69 |
| 73 CORE_EXPORT bool needsLayoutTreeUpdate(const Node&); | 70 CORE_EXPORT bool needsLayoutTreeUpdate(const Node&); |
| 74 CORE_EXPORT bool needsLayoutTreeUpdate(const Position&); | 71 CORE_EXPORT bool needsLayoutTreeUpdate(const Position&); |
| 75 CORE_EXPORT bool needsLayoutTreeUpdate(const PositionInFlatTree&); | 72 CORE_EXPORT bool needsLayoutTreeUpdate(const PositionInFlatTree&); |
| 76 | 73 |
| 77 // ------------------------------------------------------------------------- | 74 // ------------------------------------------------------------------------- |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 InputEvent::InputType, | 429 InputEvent::InputType, |
| 433 DataTransfer*, | 430 DataTransfer*, |
| 434 const RangeVector*); | 431 const RangeVector*); |
| 435 | 432 |
| 436 InputEvent::InputType deletionInputTypeFromTextGranularity(DeleteDirection, | 433 InputEvent::InputType deletionInputTypeFromTextGranularity(DeleteDirection, |
| 437 TextGranularity); | 434 TextGranularity); |
| 438 | 435 |
| 439 } // namespace blink | 436 } // namespace blink |
| 440 | 437 |
| 441 #endif | 438 #endif |
| OLD | NEW |