| Index: src/svg/parser/SkSVGClipPath.cpp
|
| diff --git a/src/svg/parser/SkSVGClipPath.cpp b/src/svg/parser/SkSVGClipPath.cpp
|
| deleted file mode 100644
|
| index 4860fe7c97a69d757ba14ba9f528f120acb289b8..0000000000000000000000000000000000000000
|
| --- a/src/svg/parser/SkSVGClipPath.cpp
|
| +++ /dev/null
|
| @@ -1,39 +0,0 @@
|
| -/*
|
| - * Copyright 2006 The Android Open Source Project
|
| - *
|
| - * Use of this source code is governed by a BSD-style license that can be
|
| - * found in the LICENSE file.
|
| - */
|
| -
|
| -
|
| -#include "SkSVGClipPath.h"
|
| -#include "SkSVGParser.h"
|
| -#include "SkSVGUse.h"
|
| -
|
| -DEFINE_SVG_NO_INFO(ClipPath)
|
| -
|
| -bool SkSVGClipPath::isDef() {
|
| - return true;
|
| -}
|
| -
|
| -bool SkSVGClipPath::isNotDef() {
|
| - return false;
|
| -}
|
| -
|
| -void SkSVGClipPath::translate(SkSVGParser& parser, bool defState) {
|
| - parser._startElement("clip");
|
| - INHERITED::translate(parser, defState);
|
| - SkASSERT(fChildren.count() == 1);
|
| - SkSVGElement* child = *fChildren.begin();
|
| - SkASSERT(child->getType() == SkSVGType_Use);
|
| - SkSVGUse* use = (SkSVGUse*) child;
|
| - SkSVGElement* ref = nullptr;
|
| - const char* refStr = &use->f_xlink_href.c_str()[1];
|
| - SkASSERT(parser.getIDs().find(refStr, &ref));
|
| - SkASSERT(ref);
|
| - if (ref->getType() == SkSVGType_Rect)
|
| - parser._addAttribute("rectangle", refStr);
|
| - else
|
| - parser._addAttribute("path", refStr);
|
| - parser._endElement();
|
| -}
|
|
|