1ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com
2ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com/*
3ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com * Copyright 2006 The Android Open Source Project
4ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com *
5ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com * Use of this source code is governed by a BSD-style license that can be
6ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com * found in the LICENSE file.
7ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com */
8ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com
98a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com
108a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com#ifndef SkSVGSVG_DEFINED
118a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com#define SkSVGSVG_DEFINED
128a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com
138a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com#include "SkSVGElements.h"
148a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com
158a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.comclass SkSVGSVG : public SkSVGElement {
168a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com    DECLARE_SVG_INFO(SVG);
178a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com    virtual bool isFlushable();
188a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.comprivate:
198a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com    SkString f_enable_background;
208a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com    SkString f_height;
218a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com    SkString f_overflow;
228a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com    SkString f_width;
238a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com    SkString f_version;
248a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com    SkString f_viewBox;
25d6176b0dcacb124539e0cfd051e6d93a9782f020rmistry@google.com    SkString f_x;
268a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com    SkString f_xml_space;
278a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com    SkString f_xmlns;
288a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com    SkString f_xml_xlink;
29d6176b0dcacb124539e0cfd051e6d93a9782f020rmistry@google.com    SkString f_y;
305ee64ad6b54edc07849fa04681801802b7102590reed@android.com
318a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com    typedef SkSVGElement INHERITED;
328a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com};
338a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com
348a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com#endif // SkSVGSVG_DEFINED
35