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

Unified Diff: chrome/common/font_loader_mac.h

Issue 2131005: Mac: Infrastructure for serialization of OS fonts over IPC. (Closed)
Patch Set: Better error logging Created 10 years, 7 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 | « chrome/chrome_tests.gypi ('k') | chrome/common/font_loader_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/font_loader_mac.h
diff --git a/chrome/common/font_loader_mac.h b/chrome/common/font_loader_mac.h
new file mode 100644
index 0000000000000000000000000000000000000000..8d2467f11763a1aba311263996776775fbc59257
--- /dev/null
+++ b/chrome/common/font_loader_mac.h
@@ -0,0 +1,49 @@
+// Copyright (c) 2010 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.
+
+#ifndef CHROME_COMMON_FONT_LOADER_MAC_H_
+#define CHROME_COMMON_FONT_LOADER_MAC_H_
+
+#include <ApplicationServices/ApplicationServices.h>
+
+#include "base/shared_memory.h"
+#include "base/string16.h"
+
+// Provides functionality to transmit fonts over IPC.
+//
+// Note about font formats: .dfont (datafork suitcase) fonts are currently not
+// supported by this code since ATSFontActivateFromMemory() can't handle them
+// directly.
+
+class FontLoader {
+ public:
+ // Load a font specified by |font_name| and |font_point_size| into a shared
+ // memory buffer suitable for sending over IPC.
+ //
+ // On return:
+ // returns true on success, false on failure.
+ // |font_data| - shared memory buffer containing the raw data for the font
+ // file.
+ // |font_data_size| - size of data contained in |font_data|.
+ static bool LoadFontIntoBuffer(const string16& font_name,
+ float font_point_size,
+ base::SharedMemory* font_data,
+ uint32* font_data_size);
+
+ // Given a shared memory buffer containing the raw data for a font file, load
+ // the font into a CGFontRef.
+ //
+ // |data| - A shared memory handle pointing to the raw data from a font file.
+ // |data_size| - Size of |data|.
+ //
+ // On return:
+ // returns true on success, false on failure.
+ // |font| - A CGFontRef containing the designated font, the caller is
+ // responsible for releasing this value.
+ static bool CreateCGFontFromBuffer(base::SharedMemoryHandle font_data,
+ uint32 font_data_size,
+ CGFontRef* font);
+};
+
+#endif // CHROME_COMMON_FONT_LOADER_MAC_H_
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/font_loader_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698