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

Unified Diff: Source/core/dom/TransformSourceLibxslt.cpp

Issue 14386007: Remove some orphaned USE macros. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Change updated after James' suggestion Created 7 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
« no previous file with comments | « Source/core/dom/TransformSource.h ('k') | Source/core/editing/Editor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/TransformSourceLibxslt.cpp
diff --git a/Source/core/dom/TransformSourceLibxslt.cpp b/Source/core/dom/TransformSourceLibxslt.cpp
index 6d80a281ac9b09b7333a55680ff8c3f9b5d5bbba..b64525000e844d346364720d2470d1da893f05cf 100644
--- a/Source/core/dom/TransformSourceLibxslt.cpp
+++ b/Source/core/dom/TransformSourceLibxslt.cpp
@@ -31,14 +31,14 @@
namespace WebCore {
-TransformSource::TransformSource(const PlatformTransformSource& source)
+TransformSource::TransformSource(xmlDocPtr source)
: m_source(source)
{
}
TransformSource::~TransformSource()
{
- xmlFreeDoc((xmlDocPtr)m_source);
+ xmlFreeDoc(m_source);
}
} // namespace WebCore
« no previous file with comments | « Source/core/dom/TransformSource.h ('k') | Source/core/editing/Editor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698