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

Unified Diff: third_party/ots/src/prep.cc

Issue 951673002: Revert "Pull chromium at 2c3ffb2355a27c32f45e508ef861416b820c823b" (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « third_party/ots/src/prep.h ('k') | third_party/ots/src/vdmx.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/ots/src/prep.cc
diff --git a/third_party/ots/src/prep.cc b/third_party/ots/src/prep.cc
deleted file mode 100644
index ea3dec0b5361c0312e87b67ae46e0eed2e458d0f..0000000000000000000000000000000000000000
--- a/third_party/ots/src/prep.cc
+++ /dev/null
@@ -1,54 +0,0 @@
-// Copyright (c) 2009 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 "prep.h"
-
-// prep - Control Value Program
-// http://www.microsoft.com/typography/otspec/prep.htm
-
-#define TABLE_NAME "prep"
-
-namespace ots {
-
-bool ots_prep_parse(OpenTypeFile *file, const uint8_t *data, size_t length) {
- Buffer table(data, length);
-
- OpenTypePREP *prep = new OpenTypePREP;
- file->prep = prep;
-
- if (length >= 128 * 1024u) {
- return OTS_FAILURE_MSG("table length %ld > 120K", length); // almost all prep tables are less than 9k bytes.
- }
-
- if (!table.Skip(length)) {
- return OTS_FAILURE_MSG("Failed to read table of length %ld", length);
- }
-
- prep->data = data;
- prep->length = length;
- return true;
-}
-
-bool ots_prep_should_serialise(OpenTypeFile *file) {
- if (!file->glyf) return false; // this table is not for CFF fonts.
- return file->prep != NULL;
-}
-
-bool ots_prep_serialise(OTSStream *out, OpenTypeFile *file) {
- const OpenTypePREP *prep = file->prep;
-
- if (!out->Write(prep->data, prep->length)) {
- return OTS_FAILURE_MSG("Failed to write table length");
- }
-
- return true;
-}
-
-void ots_prep_free(OpenTypeFile *file) {
- delete file->prep;
-}
-
-} // namespace ots
-
-#undef TABLE_NAME
« no previous file with comments | « third_party/ots/src/prep.h ('k') | third_party/ots/src/vdmx.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698