michael@0: michael@0: /* michael@0: * Copyright 2006 The Android Open Source Project michael@0: * michael@0: * Use of this source code is governed by a BSD-style license that can be michael@0: * found in the LICENSE file. michael@0: */ michael@0: michael@0: michael@0: #ifndef SkSVGSVG_DEFINED michael@0: #define SkSVGSVG_DEFINED michael@0: michael@0: #include "SkSVGElements.h" michael@0: michael@0: class SkSVGSVG : public SkSVGElement { michael@0: DECLARE_SVG_INFO(SVG); michael@0: virtual bool isFlushable(); michael@0: private: michael@0: SkString f_enable_background; michael@0: SkString f_height; michael@0: SkString f_overflow; michael@0: SkString f_width; michael@0: SkString f_version; michael@0: SkString f_viewBox; michael@0: SkString f_x; michael@0: SkString f_xml_space; michael@0: SkString f_xmlns; michael@0: SkString f_xml_xlink; michael@0: SkString f_y; michael@0: michael@0: typedef SkSVGElement INHERITED; michael@0: }; michael@0: michael@0: #endif // SkSVGSVG_DEFINED