| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Alp Toker <alp@atoker.com> | 2 * Copyright (C) 2007 Alp Toker <alp@atoker.com> |
| 3 * Copyright (C) 2007 Apple Inc. | 3 * Copyright (C) 2007 Apple Inc. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 void computePageRectsWithPageSizeInternal(const FloatSize& pageSizeInPixels)
; | 87 void computePageRectsWithPageSizeInternal(const FloatSize& pageSizeInPixels)
; |
| 88 void collectLinkedDestinations(Node*); | 88 void collectLinkedDestinations(Node*); |
| 89 | 89 |
| 90 // Used to prevent misuses of begin() and end() (e.g., call end without begi
n). | 90 // Used to prevent misuses of begin() and end() (e.g., call end without begi
n). |
| 91 bool m_isPrinting; | 91 bool m_isPrinting; |
| 92 | 92 |
| 93 WillBeHeapHashMap<String, RawPtrWillBeMember<Element>> m_linkedDestinations; | 93 WillBeHeapHashMap<String, RawPtrWillBeMember<Element>> m_linkedDestinations; |
| 94 bool m_linkedDestinationsValid; | 94 bool m_linkedDestinationsValid; |
| 95 }; | 95 }; |
| 96 | 96 |
| 97 } | 97 } // namespace blink |
| 98 | 98 |
| 99 #endif | 99 #endif |
| OLD | NEW |