| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google 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 11 matching lines...) Expand all Loading... |
| 22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 23 * SUCH DAMAGE. | 23 * SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "core/html/shadow/DateTimeSymbolicFieldElement.h" | 26 #include "core/html/shadow/DateTimeSymbolicFieldElement.h" |
| 27 | 27 |
| 28 #include "core/events/KeyboardEvent.h" | 28 #include "core/events/KeyboardEvent.h" |
| 29 #include "platform/fonts/Font.h" | 29 #include "platform/fonts/Font.h" |
| 30 #include "platform/text/TextBreakIterator.h" | 30 #include "platform/text/TextBreakIterator.h" |
| 31 #include "platform/text/TextRun.h" | 31 #include "platform/text/TextRun.h" |
| 32 #include "wtf/text/StringBuilder.h" | 32 #include "platform/wtf/text/StringBuilder.h" |
| 33 #include "wtf/text/Unicode.h" | 33 #include "platform/wtf/text/Unicode.h" |
| 34 | 34 |
| 35 namespace blink { | 35 namespace blink { |
| 36 | 36 |
| 37 static AtomicString MakeVisibleEmptyValue(const Vector<String>& symbols) { | 37 static AtomicString MakeVisibleEmptyValue(const Vector<String>& symbols) { |
| 38 unsigned maximum_length = 0; | 38 unsigned maximum_length = 0; |
| 39 for (unsigned index = 0; index < symbols.size(); ++index) | 39 for (unsigned index = 0; index < symbols.size(); ++index) |
| 40 maximum_length = | 40 maximum_length = |
| 41 std::max(maximum_length, NumGraphemeClusters(symbols[index])); | 41 std::max(maximum_length, NumGraphemeClusters(symbols[index])); |
| 42 StringBuilder builder; | 42 StringBuilder builder; |
| 43 builder.ReserveCapacity(maximum_length); | 43 builder.ReserveCapacity(maximum_length); |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 | 167 |
| 168 int DateTimeSymbolicFieldElement::OptionCount() const { | 168 int DateTimeSymbolicFieldElement::OptionCount() const { |
| 169 return symbols_.size(); | 169 return symbols_.size(); |
| 170 } | 170 } |
| 171 | 171 |
| 172 String DateTimeSymbolicFieldElement::OptionAtIndex(int index) const { | 172 String DateTimeSymbolicFieldElement::OptionAtIndex(int index) const { |
| 173 return symbols_[index]; | 173 return symbols_[index]; |
| 174 } | 174 } |
| 175 | 175 |
| 176 } // namespace blink | 176 } // namespace blink |
| OLD | NEW |