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

Unified Diff: Source/core/svg/SVGFontFaceSource.cpp

Issue 656913006: Remove SVG fonts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update tests for landing Created 6 years, 2 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
Index: Source/core/svg/SVGFontFaceSource.cpp
diff --git a/Source/core/svg/SVGFontFaceSource.cpp b/Source/core/svg/SVGFontFaceSource.cpp
deleted file mode 100644
index e3edd7b02c29a3f75e512637f5335a7d192cff72..0000000000000000000000000000000000000000
--- a/Source/core/svg/SVGFontFaceSource.cpp
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "config.h"
-
-#if ENABLE(SVG_FONTS)
-#include "core/svg/SVGFontFaceSource.h"
-
-#include "core/svg/SVGFontData.h"
-#include "core/svg/SVGFontFaceElement.h"
-#include "platform/fonts/FontDescription.h"
-#include "platform/fonts/SimpleFontData.h"
-
-namespace blink {
-
-SVGFontFaceSource::SVGFontFaceSource(SVGFontFaceElement* element)
- : m_svgFontFaceElement(element)
-{
-}
-
-PassRefPtr<SimpleFontData> SVGFontFaceSource::createFontData(const FontDescription& fontDescription)
-{
- return SimpleFontData::create(
- SVGFontData::create(m_svgFontFaceElement.get()),
- fontDescription.effectiveFontSize(),
- fontDescription.isSyntheticBold(),
- fontDescription.isSyntheticItalic());
-}
-
-void SVGFontFaceSource::trace(Visitor* visitor)
-{
- visitor->trace(m_svgFontFaceElement);
- CSSFontFaceSource::trace(visitor);
-}
-
-} // namespace blink
-
-#endif // ENABLE(SVG_FONTS)

Powered by Google App Engine
This is Rietveld 408576698