Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Side by Side Diff: third_party/WebKit/Source/core/page/PrintContext.cpp

Issue 1538363002: Remove config.h inclusion from third_party/WebKit/Source/core/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698