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

Unified Diff: content/common/dwrite_font_proxy_messages.h

Issue 2153343002: Implement support for loading font files from outside system directory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Test patchset to run try job Created 4 years, 5 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: content/common/dwrite_font_proxy_messages.h
diff --git a/content/common/dwrite_font_proxy_messages.h b/content/common/dwrite_font_proxy_messages.h
index 288a3cf0d05cb300b8ff35a0499e567997b3afed..d00309d3c9d4e660a0928587aff8d6cffea220df 100644
--- a/content/common/dwrite_font_proxy_messages.h
+++ b/content/common/dwrite_font_proxy_messages.h
@@ -55,9 +55,10 @@ IPC_SYNC_MESSAGE_CONTROL1_1(
// Returns the list of font file paths in the system font directory that contain
// font data for the font family at the specified index.
-IPC_SYNC_MESSAGE_CONTROL1_1(DWriteFontProxyMsg_GetFontFiles,
+IPC_SYNC_MESSAGE_CONTROL1_2(DWriteFontProxyMsg_GetFontFiles,
uint32_t /* family_index */,
- std::vector<base::string16> /* out file_paths */)
+ std::vector<base::string16> /* out file_paths */,
+ std::vector<uint32_t> /* out file_handles*/)
// Locates a font family that is able to render the specified text using the
// specified style. If successful, the family_index and family_name will

Powered by Google App Engine
This is Rietveld 408576698