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

Unified Diff: ppapi/cpp/private/flash_font.cc

Issue 10905227: Introduce PPB_Flash_Font. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 3 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: ppapi/cpp/private/flash_font.cc
diff --git a/ppapi/cpp/private/flash_font.cc b/ppapi/cpp/private/flash_font.cc
new file mode 100644
index 0000000000000000000000000000000000000000..0e7ca54f443bc900f14e938d61b72e807d8daeb8
--- /dev/null
+++ b/ppapi/cpp/private/flash_font.cc
@@ -0,0 +1,78 @@
+// 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.
+
+#include "ppapi/cpp/private/flash_font.h"
+
+#include "ppapi/c/private/ppb_pdf.h"
+#include "ppapi/cpp/instance_handle.h"
+#include "ppapi/cpp/module_impl.h"
+
+namespace pp {
+
+namespace {
+
+// TODO(yzshen): Once PPB_Flash_Font gets to the stable channel, we can remove
+// the code of using PPB_PDF in this file.
+template <> const char* interface_name<PPB_PDF>() {
+ return PPB_PDF_INTERFACE;
+}
+
+template <> const char* interface_name<PPB_Flash_Font_0_1>() {
+ return PPB_FLASH_FONT_INTERFACE_0_1;
+}
+
+class FontFile : public Resource {
+ public:
+ FontFile(PassRef, PP_Resource resource) : Resource(PASS_REF, resource) {
+ }
+
+ virtual ~FontFile() {}
+};
+
+} // namespace
+
+namespace flash {
+
+// static
+bool Font::IsAvailable() {
+ return has_interface<PPB_PDF>() || has_interface<PPB_Flash_Font_0_1>();
+}
+
+// static
+Resource Font::GetFontFileWithFallback(
+ const InstanceHandle& instance,
+ const PP_FontDescription_Dev* description,
+ PP_PrivateFontCharset charset) {
+ if (has_interface<PPB_Flash_Font_0_1>()) {
+ return FontFile(PASS_REF,
+ get_interface<PPB_Flash_Font_0_1>()->GetFontFileWithFallback(
+ instance.pp_instance(), description, charset));
+ }
+ if (has_interface<PPB_PDF>()) {
+ return FontFile(PASS_REF,
+ get_interface<PPB_PDF>()->GetFontFileWithFallback(
+ instance.pp_instance(), description, charset));
+ }
+ return Resource();
+}
+
+// static
+bool Font::GetFontTableForPrivateFontFile(const Resource& font_file,
+ uint32_t table,
+ void* output,
+ uint32_t* output_length) {
+ if (has_interface<PPB_Flash_Font_0_1>()) {
+ return !!get_interface<PPB_Flash_Font_0_1>()->
+ GetFontTableForPrivateFontFile(
+ font_file.pp_resource(), table, output, output_length);
+ }
+ if (has_interface<PPB_PDF>()) {
+ return get_interface<PPB_PDF>()->GetFontTableForPrivateFontFile(
+ font_file.pp_resource(), table, output, output_length);
+ }
+ return false;
+}
+
+} // namespace flash
+} // namespace pp

Powered by Google App Engine
This is Rietveld 408576698