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

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

Issue 403333002: [oilpan]: Remove support for tracing off-heap hashmaps. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add GC_PLUGIN_IGNORE Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/page/EventHandler.cpp ('k') | Source/core/svg/animation/SMILTimeContainer.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 graphicsContext.restore(); 374 graphicsContext.restore();
375 375
376 currentHeight += pageSizeInPixels.height() + 1; 376 currentHeight += pageSizeInPixels.height() + 1;
377 } 377 }
378 378
379 graphicsContext.restore(); 379 graphicsContext.restore();
380 } 380 }
381 381
382 void PrintContext::trace(Visitor* visitor) 382 void PrintContext::trace(Visitor* visitor)
383 { 383 {
384 #if ENABLE(OILPAN)
384 visitor->trace(m_linkedDestinations); 385 visitor->trace(m_linkedDestinations);
386 #endif
385 } 387 }
386 388
387 } 389 }
OLDNEW
« no previous file with comments | « Source/core/page/EventHandler.cpp ('k') | Source/core/svg/animation/SMILTimeContainer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698