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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/GeometryMapper.cpp

Issue 2329463004: ABANDONED CL: Changes needed to make things compile after running rewrite_to_chrome_style tool. (Closed)
Patch Set: More fixes - things build fine at this point. Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/graphics/paint/GeometryMapper.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/paint/GeometryMapper.cpp b/third_party/WebKit/Source/platform/graphics/paint/GeometryMapper.cpp
index 3e183cb28cbb638f7cfc75214ccbe95a5e253ff3..ef32195bea6245670df3b9547b60a091f8717fbc 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/GeometryMapper.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/GeometryMapper.cpp
@@ -461,16 +461,16 @@ const NodeType* GeometryMapper::lowestCommonAncestor(const NodeType* a,
// Explicitly instantiate the template for all supported types. This allows
// placing the template implementation in this .cpp file. See
// http://stackoverflow.com/a/488989 for more.
-template const EffectPaintPropertyNode* GeometryMapper::lowestCommonAncestor(
+template const EffectPaintPropertyNode* GeometryMapper::LowestCommonAncestor(
const EffectPaintPropertyNode*,
const EffectPaintPropertyNode*);
-template const TransformPaintPropertyNode* GeometryMapper::lowestCommonAncestor(
+template const TransformPaintPropertyNode* GeometryMapper::LowestCommonAncestor(
const TransformPaintPropertyNode*,
const TransformPaintPropertyNode*);
-template const ClipPaintPropertyNode* GeometryMapper::lowestCommonAncestor(
+template const ClipPaintPropertyNode* GeometryMapper::LowestCommonAncestor(
const ClipPaintPropertyNode*,
const ClipPaintPropertyNode*);
-template const ScrollPaintPropertyNode* GeometryMapper::lowestCommonAncestor(
+template const ScrollPaintPropertyNode* GeometryMapper::LowestCommonAncestor(
const ScrollPaintPropertyNode*,
const ScrollPaintPropertyNode*);

Powered by Google App Engine
This is Rietveld 408576698