| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef ColdModeSpellCheckRequester_h | 5 #ifndef ColdModeSpellCheckRequester_h |
| 6 #define ColdModeSpellCheckRequester_h | 6 #define ColdModeSpellCheckRequester_h |
| 7 | 7 |
| 8 #include "core/editing/EphemeralRange.h" | 8 #include "core/editing/EphemeralRange.h" |
| 9 #include "platform/heap/Handle.h" | 9 #include "platform/heap/Handle.h" |
| 10 | 10 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 Member<Node> next_node_; | 51 Member<Node> next_node_; |
| 52 Member<Element> current_root_editable_; | 52 Member<Element> current_root_editable_; |
| 53 int current_full_length_; | 53 int current_full_length_; |
| 54 int current_chunk_index_; | 54 int current_chunk_index_; |
| 55 Position current_chunk_start_; | 55 Position current_chunk_start_; |
| 56 uint64_t last_checked_dom_tree_version_; | 56 uint64_t last_checked_dom_tree_version_; |
| 57 mutable bool needs_more_invocation_for_testing_; | 57 mutable bool needs_more_invocation_for_testing_; |
| 58 | 58 |
| 59 DISALLOW_COPY_AND_ASSIGN(ColdModeSpellCheckRequester); | 59 DISALLOW_COPY_AND_ASSIGN(ColdModeSpellCheckRequester); |
| 60 }; | 60 }; |
| 61 } | 61 } // namespace blink |
| 62 | 62 |
| 63 #endif | 63 #endif |
| OLD | NEW |