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

Side by Side Diff: Source/core/css/CSSPrimitiveValue.cpp

Issue 106423003: [oilpan] Rename visit to mark. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Fix typo Created 7 years 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
OLDNEW
1 /* 1 /*
2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2012 Apple Inc. All rights reserv ed. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2012 Apple Inc. All rights reserv ed.
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 1310 matching lines...) Expand 10 before | Expand all | Expand 10 after
1321 break; 1321 break;
1322 default: 1322 default:
1323 break; 1323 break;
1324 } 1324 }
1325 } 1325 }
1326 1326
1327 void CSSPrimitiveValue::traceAfterDispatch(Visitor* visitor) 1327 void CSSPrimitiveValue::traceAfterDispatch(Visitor* visitor)
1328 { 1328 {
1329 switch (m_primitiveUnitType) { 1329 switch (m_primitiveUnitType) {
1330 case CSS_CALC: 1330 case CSS_CALC:
1331 visitor->visit(m_value.calc); 1331 visitor->mark(m_value.calc);
1332 break; 1332 break;
1333 case CSS_COUNTER: 1333 case CSS_COUNTER:
1334 visitor->visit(m_value.counter); 1334 visitor->mark(m_value.counter);
1335 break; 1335 break;
1336 case CSS_PAIR: 1336 case CSS_PAIR:
1337 visitor->visit(m_value.pair); 1337 visitor->mark(m_value.pair);
1338 break; 1338 break;
1339 case CSS_RECT: 1339 case CSS_RECT:
1340 visitor->visit(m_value.rect); 1340 visitor->mark(m_value.rect);
1341 break; 1341 break;
1342 case CSS_QUAD: 1342 case CSS_QUAD:
1343 visitor->visit(m_value.quad); 1343 visitor->mark(m_value.quad);
1344 break; 1344 break;
1345 case CSS_SHAPE: 1345 case CSS_SHAPE:
1346 visitor->visit(m_value.shape); 1346 visitor->mark(m_value.shape);
1347 break; 1347 break;
1348 default: 1348 default:
1349 break; 1349 break;
1350 } 1350 }
1351 CSSValue::traceAfterDispatch(visitor); 1351 CSSValue::traceAfterDispatch(visitor);
1352 } 1352 }
1353 1353
1354 } // namespace WebCore 1354 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698