| 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 "core/layout/LayoutAnalyzer.h" | 5 #include "core/layout/LayoutAnalyzer.h" |
| 6 | 6 |
| 7 #include "core/frame/FrameView.h" | 7 #include "core/frame/FrameView.h" |
| 8 #include "core/layout/LayoutBlock.h" | 8 #include "core/layout/LayoutBlock.h" |
| 9 #include "core/layout/LayoutObject.h" | 9 #include "core/layout/LayoutObject.h" |
| 10 #include "core/layout/LayoutText.h" | 10 #include "core/layout/LayoutText.h" |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 return "CharactersInLayoutObjectsThatAreTextAndCanNotUseTheSimpleFontCode" | 145 return "CharactersInLayoutObjectsThatAreTextAndCanNotUseTheSimpleFontCode" |
| 146 "Path"; | 146 "Path"; |
| 147 case LayoutObjectsThatAreTextAndCanUseTheSimpleFontCodePath: | 147 case LayoutObjectsThatAreTextAndCanUseTheSimpleFontCodePath: |
| 148 return "LayoutObjectsThatAreTextAndCanUseTheSimpleFontCodePath"; | 148 return "LayoutObjectsThatAreTextAndCanUseTheSimpleFontCodePath"; |
| 149 case CharactersInLayoutObjectsThatAreTextAndCanUseTheSimpleFontCodePath: | 149 case CharactersInLayoutObjectsThatAreTextAndCanUseTheSimpleFontCodePath: |
| 150 return "CharactersInLayoutObjectsThatAreTextAndCanUseTheSimpleFontCodePat" | 150 return "CharactersInLayoutObjectsThatAreTextAndCanUseTheSimpleFontCodePat" |
| 151 "h"; | 151 "h"; |
| 152 case TotalLayoutObjectsThatWereLaidOut: | 152 case TotalLayoutObjectsThatWereLaidOut: |
| 153 return "TotalLayoutObjectsThatWereLaidOut"; | 153 return "TotalLayoutObjectsThatWereLaidOut"; |
| 154 } | 154 } |
| 155 ASSERT_NOT_REACHED(); | 155 NOTREACHED(); |
| 156 return ""; | 156 return ""; |
| 157 } | 157 } |
| 158 | 158 |
| 159 } // namespace blink | 159 } // namespace blink |
| OLD | NEW |