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

Unified Diff: third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.h

Issue 1545523003: Polish recently added documentation for PaintLayerFilterInfo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.h
diff --git a/third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.h b/third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.h
index e0d05ef19b69b4772f2314ba64393b49a0fb4901..ebb182416ef91f8c76a441ee4970a41bb33a0f43 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.h
+++ b/third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.h
@@ -53,11 +53,11 @@ typedef HashMap<const PaintLayer*, PaintLayerFilterInfo*> PaintLayerFilterInfoMa
//
// Because PaintLayer is not allocated for SVG objects, SVG filters (both
// software and hardware-accelerated) use a different code path to paint the
-// filters (SVGFilterPainer), but both code paths use the same abstraction for
+// filters (SVGFilterPainter), but both code paths use the same abstraction for
// painting non-hardware accelerated filters (FilterEffect). Hardware
// accelerated CSS filters use WebFilterOperations, that is backed by cc.
//
-// PaintLayerFilterInfo is allocated when filters are present and store in an
+// PaintLayerFilterInfo is allocated when filters are present and stored in an
// internal map (s_filterMap) to save memory as 'filter' should be a rare
// property.
class PaintLayerFilterInfo final : public DocumentResourceClient {
@@ -76,7 +76,7 @@ public:
static PaintLayerFilterInfo* createFilterInfoForLayerIfNeeded(PaintLayer*);
// Remove the PaintLayerFilterInfo associated with PaintLayer.
- // If there is none, this function does nothing.
+ // If there is none, this function does nothing.
static void removeFilterInfoForLayer(PaintLayer*);
FilterEffectBuilder* builder() const { return m_builder.get(); }
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698