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

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

Issue 1208583002: Code cleanup #1 in core/dom/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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/Range.cpp ('k') | Source/core/dom/TreeWalker.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/TransformSource.h
diff --git a/Source/core/dom/TransformSource.h b/Source/core/dom/TransformSource.h
index 4765f6a531d1a8e198ed946b6c31b6387768e788..1f3eb5e9189ed5c10e4ffb4b39b58aae67e9aaf7 100644
--- a/Source/core/dom/TransformSource.h
+++ b/Source/core/dom/TransformSource.h
@@ -26,17 +26,17 @@
namespace blink {
- class TransformSource {
- WTF_MAKE_NONCOPYABLE(TransformSource); WTF_MAKE_FAST_ALLOCATED(TransformSource);
- public:
- explicit TransformSource(xmlDocPtr source);
- ~TransformSource();
+class TransformSource {
+ WTF_MAKE_NONCOPYABLE(TransformSource); WTF_MAKE_FAST_ALLOCATED(TransformSource);
+public:
+ explicit TransformSource(xmlDocPtr source);
+ ~TransformSource();
- xmlDocPtr platformSource() const { return m_source; }
+ xmlDocPtr platformSource() const { return m_source; }
- private:
- xmlDocPtr m_source;
- };
+private:
+ xmlDocPtr m_source;
+};
} // namespace blink
« no previous file with comments | « Source/core/dom/Range.cpp ('k') | Source/core/dom/TreeWalker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698