| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 #include "wtf/Noncopyable.h" | 38 #include "wtf/Noncopyable.h" |
| 39 #include <memory> | 39 #include <memory> |
| 40 #include <unicode/uchar.h> | 40 #include <unicode/uchar.h> |
| 41 | 41 |
| 42 namespace blink { | 42 namespace blink { |
| 43 | 43 |
| 44 class ComputedStyle; | 44 class ComputedStyle; |
| 45 class Document; | 45 class Document; |
| 46 class IntSize; | 46 class IntSize; |
| 47 class LayoutBlock; | 47 class LayoutBlock; |
| 48 class LayoutListItem; | |
| 49 class LayoutListMarker; | |
| 50 class LayoutObject; | 48 class LayoutObject; |
| 51 class LayoutTable; | 49 class LayoutTable; |
| 52 class LocalFrame; | 50 class LocalFrame; |
| 53 class Page; | 51 class Page; |
| 54 class SubtreeLayoutScope; | 52 class SubtreeLayoutScope; |
| 55 | 53 |
| 56 // Single-pass text autosizer. Documentation at: | 54 // Single-pass text autosizer. Documentation at: |
| 57 // http://tinyurl.com/TextAutosizer | 55 // http://tinyurl.com/TextAutosizer |
| 58 | 56 |
| 59 class CORE_EXPORT TextAutosizer final | 57 class CORE_EXPORT TextAutosizer final |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 FingerprintMapper m_fingerprintMapper; | 336 FingerprintMapper m_fingerprintMapper; |
| 339 Vector<RefPtr<ComputedStyle>> m_stylesRetainedDuringLayout; | 337 Vector<RefPtr<ComputedStyle>> m_stylesRetainedDuringLayout; |
| 340 // FIXME: All frames should share the same m_pageInfo instance. | 338 // FIXME: All frames should share the same m_pageInfo instance. |
| 341 PageInfo m_pageInfo; | 339 PageInfo m_pageInfo; |
| 342 bool m_updatePageInfoDeferred; | 340 bool m_updatePageInfoDeferred; |
| 343 }; | 341 }; |
| 344 | 342 |
| 345 } // namespace blink | 343 } // namespace blink |
| 346 | 344 |
| 347 #endif // TextAutosizer_h | 345 #endif // TextAutosizer_h |
| OLD | NEW |