| 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
|
|
|
|
|