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

Unified Diff: Source/core/dom/Node.h

Issue 22604008: Allow SVG images to not taint the canvas with drawImage/drawPattern (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase after r156375 Created 7 years, 4 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
« no previous file with comments | « LayoutTests/svg/as-image/svg-canvas-xhtml-tainted-expected.txt ('k') | Source/core/dom/Node.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Node.h
diff --git a/Source/core/dom/Node.h b/Source/core/dom/Node.h
index f442a593044ca9e53e0bb0a5be131327210effeb..fb29a18a3d7c0254cf7fec62b36f9501d39873bd 100644
--- a/Source/core/dom/Node.h
+++ b/Source/core/dom/Node.h
@@ -400,9 +400,7 @@ public:
bool shouldNotifyRendererWithIdenticalStyles() const { return getFlag(NotifyRendererWithIdenticalStyles); }
- void setIsLink(bool f) { setFlag(f, IsLinkFlag); }
- void setIsLink() { setFlag(IsLinkFlag); }
- void clearIsLink() { clearFlag(IsLinkFlag); }
+ void setIsLink(bool f);
void setInNamedFlow() { setFlag(InNamedFlowFlag); }
void clearInNamedFlow() { clearFlag(InNamedFlowFlag); }
« no previous file with comments | « LayoutTests/svg/as-image/svg-canvas-xhtml-tainted-expected.txt ('k') | Source/core/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698