| 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, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #include "config.h" | |
| 22 #include "core/page/PrintContext.h" | 21 #include "core/page/PrintContext.h" |
| 23 | 22 |
| 24 #include "core/frame/FrameView.h" | 23 #include "core/frame/FrameView.h" |
| 25 #include "core/frame/LocalFrame.h" | 24 #include "core/frame/LocalFrame.h" |
| 26 #include "core/layout/LayoutView.h" | 25 #include "core/layout/LayoutView.h" |
| 27 #include "platform/graphics/GraphicsContext.h" | 26 #include "platform/graphics/GraphicsContext.h" |
| 28 | 27 |
| 29 namespace blink { | 28 namespace blink { |
| 30 | 29 |
| 31 // By imaging to a width a little wider than the available pixels, | 30 // By imaging to a width a little wider than the available pixels, |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 | 311 |
| 313 DEFINE_TRACE(PrintContext) | 312 DEFINE_TRACE(PrintContext) |
| 314 { | 313 { |
| 315 #if ENABLE(OILPAN) | 314 #if ENABLE(OILPAN) |
| 316 visitor->trace(m_frame); | 315 visitor->trace(m_frame); |
| 317 visitor->trace(m_linkedDestinations); | 316 visitor->trace(m_linkedDestinations); |
| 318 #endif | 317 #endif |
| 319 } | 318 } |
| 320 | 319 |
| 321 } | 320 } |
| OLD | NEW |