| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "SymbolsIterator.h" | 5 #include "SymbolsIterator.h" |
| 6 | 6 |
| 7 #include <unicode/uchar.h> | 7 #include <unicode/uchar.h> |
| 8 #include <unicode/uniset.h> | 8 #include <unicode/uniset.h> |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 *fontFallbackPriority = m_previousFontFallbackPriority; | 146 *fontFallbackPriority = m_previousFontFallbackPriority; |
| 147 return true; | 147 return true; |
| 148 } | 148 } |
| 149 } | 149 } |
| 150 *symbolsLimit = m_bufferSize; | 150 *symbolsLimit = m_bufferSize; |
| 151 *fontFallbackPriority = m_currentFontFallbackPriority; | 151 *fontFallbackPriority = m_currentFontFallbackPriority; |
| 152 m_atEnd = true; | 152 m_atEnd = true; |
| 153 return true; | 153 return true; |
| 154 } | 154 } |
| 155 | 155 |
| 156 } | 156 } // namespace blink |
| OLD | NEW |