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

Unified Diff: printing/pdf_metafile_skia.cc

Issue 9792001: Roll Skia to 3470, which changes most of the pdf includes to be private. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix copyright Created 8 years, 9 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 | « DEPS ('k') | skia/skia.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/pdf_metafile_skia.cc
diff --git a/printing/pdf_metafile_skia.cc b/printing/pdf_metafile_skia.cc
index e2409b941f738a86cad5ae0e7d1a158c5c046c42..ac066957cab8cf110c3a692e78db476752d740e9 100644
--- a/printing/pdf_metafile_skia.cc
+++ b/printing/pdf_metafile_skia.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 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.
@@ -17,8 +17,6 @@
#include "third_party/skia/include/core/SkTypeface.h"
#include "third_party/skia/include/pdf/SkPDFDevice.h"
#include "third_party/skia/include/pdf/SkPDFDocument.h"
-#include "third_party/skia/include/pdf/SkPDFFont.h"
-#include "third_party/skia/include/pdf/SkPDFPage.h"
#include "ui/gfx/point.h"
#include "ui/gfx/rect.h"
#include "ui/gfx/size.h"
@@ -95,21 +93,18 @@ bool PdfMetafileSkia::FinishDocument() {
FinishPage();
data_->current_page_ = NULL;
- base::hash_set<SkFontID> font_set;
-
- const SkTDArray<SkPDFPage*>& pages = data_->pdf_doc_.getPages();
- for (int page_number = 0; page_number < pages.count(); page_number++) {
- const SkTDArray<SkPDFFont*>& font_resources =
- pages[page_number]->getFontResources();
- for (int font = 0; font < font_resources.count(); font++) {
- SkFontID font_id = font_resources[font]->typeface()->uniqueID();
- if (font_set.find(font_id) == font_set.end()) {
- font_set.insert(font_id);
- UMA_HISTOGRAM_ENUMERATION(
- "PrintPreview.FontType",
- font_resources[font]->getType(),
- SkAdvancedTypefaceMetrics::kNotEmbeddable_Font + 1);
- }
+
+ int font_counts[SkAdvancedTypefaceMetrics::kNotEmbeddable_Font + 1];
+ // Work around bug in skia for the moment.
+ memset(font_counts, 0, sizeof(font_counts));
+ data_->pdf_doc_.getCountOfFontTypes(font_counts);
+ for (int type = 0;
+ type <= SkAdvancedTypefaceMetrics::kNotEmbeddable_Font;
+ type++) {
+ for (int count = 0; count < font_counts[type]; count++) {
+ UMA_HISTOGRAM_ENUMERATION(
+ "PrintPreview.FontType", type,
+ SkAdvancedTypefaceMetrics::kNotEmbeddable_Font + 1);
}
}
« no previous file with comments | « DEPS ('k') | skia/skia.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698