| OLD | NEW |
| 1 // Copyright (C) 2013 Google Inc. All rights reserved. | 1 // Copyright (C) 2013 Google Inc. All rights reserved. |
| 2 // | 2 // |
| 3 // Redistribution and use in source and binary forms, with or without | 3 // Redistribution and use in source and binary forms, with or without |
| 4 // modification, are permitted provided that the following conditions are | 4 // modification, are permitted provided that the following conditions are |
| 5 // met: | 5 // met: |
| 6 // | 6 // |
| 7 // * Redistributions of source code must retain the above copyright | 7 // * 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 // * Redistributions in binary form must reproduce the above | 9 // * Redistributions in binary form must reproduce the above |
| 10 // copyright notice, this list of conditions and the following disclaimer | 10 // copyright notice, this list of conditions and the following disclaimer |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 23 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 24 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 24 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 25 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 25 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 26 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 27 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 | 28 |
| 29 #ifndef TextRunIterator_h | 29 #ifndef TextRunIterator_h |
| 30 #define TextRunIterator_h | 30 #define TextRunIterator_h |
| 31 | 31 |
| 32 #include "platform/text/TextRun.h" | 32 #include "platform/text/TextRun.h" |
| 33 #include "wtf/Allocator.h" |
| 33 | 34 |
| 34 namespace blink { | 35 namespace blink { |
| 35 | 36 |
| 36 class TextRunIterator { | 37 class TextRunIterator { |
| 38 DISALLOW_NEW(); |
| 37 public: | 39 public: |
| 38 TextRunIterator() | 40 TextRunIterator() |
| 39 : m_textRun(0) | 41 : m_textRun(0) |
| 40 , m_offset(0) | 42 , m_offset(0) |
| 41 , m_length(0) | 43 , m_length(0) |
| 42 { | 44 { |
| 43 } | 45 } |
| 44 | 46 |
| 45 TextRunIterator(const TextRun* textRun, unsigned offset) | 47 TextRunIterator(const TextRun* textRun, unsigned offset) |
| 46 : m_textRun(textRun) | 48 : m_textRun(textRun) |
| (...skipping 26 matching lines...) Expand all Loading... |
| 73 private: | 75 private: |
| 74 const TextRun* m_textRun; | 76 const TextRun* m_textRun; |
| 75 unsigned m_offset; | 77 unsigned m_offset; |
| 76 unsigned m_length; | 78 unsigned m_length; |
| 77 }; | 79 }; |
| 78 | 80 |
| 79 | 81 |
| 80 } // namespace blink | 82 } // namespace blink |
| 81 | 83 |
| 82 #endif // TextRunIterator_h | 84 #endif // TextRunIterator_h |
| OLD | NEW |