Index: content/browser/renderer_host/dwrite_font_proxy_message_filter_win.h |
diff --git a/content/browser/renderer_host/dwrite_font_proxy_message_filter_win.h b/content/browser/renderer_host/dwrite_font_proxy_message_filter_win.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..75b4de5f5cecb65ae319251eab660ce31978de5a |
--- /dev/null |
+++ b/content/browser/renderer_host/dwrite_font_proxy_message_filter_win.h |
@@ -0,0 +1,52 @@ |
+// Copyright 2015 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 CONTENT_BROWSER_RENDERER_HOST_DWRITE_FONT_PROXY_MESSAGE_FILTER_WIN_H_ |
+#define CONTENT_BROWSER_RENDERER_HOST_DWRITE_FONT_PROXY_MESSAGE_FILTER_WIN_H_ |
+ |
+#include <dwrite.h> |
+#include <wrl.h> |
+#include <utility> |
+#include <vector> |
+ |
+#include "base/location.h" |
+#include "base/macros.h" |
+#include "base/strings/string16.h" |
+#include "content/common/content_export.h" |
+#include "content/public/browser/browser_message_filter.h" |
+#include "content/public/browser/browser_thread.h" |
+ |
+namespace content { |
+ |
+// Implements a message filter that handles the dwrite font proxy messages. |
+// If DWrite is enabled, calls into the system font collection to obtain |
+// results. Otherwise, acts as if the system collection contains no fonts. |
+class CONTENT_EXPORT DWriteFontProxyMessageFilter |
+ : public BrowserMessageFilter { |
+ public: |
+ DWriteFontProxyMessageFilter(); |
+ |
+ // BrowserMessageFilter: |
+ bool OnMessageReceived(const IPC::Message& message) override; |
+ void OverrideThreadForMessage(const IPC::Message& message, |
+ content::BrowserThread::ID* thread) override; |
+ |
+ protected: |
+ void OnFindFamily(const base::string16& family_name, uint32* family_index); |
+ void OnGetFamilyCount(uint32* count); |
+ void OnGetFamilyNames( |
+ uint32 family_index, |
+ std::vector<std::pair<base::string16, base::string16>>* family_names); |
+ void OnGetFontFiles(uint32 family_index, |
+ std::vector<base::string16>* file_paths); |
+ |
+ private: |
+ Microsoft::WRL::ComPtr<IDWriteFontCollection> collection_; |
+ base::string16 windows_fonts_path_; |
+ DISALLOW_COPY_AND_ASSIGN(DWriteFontProxyMessageFilter); |
+}; |
+ |
+} // namespace content |
+ |
+#endif // CONTENT_BROWSER_RENDERER_HOST_DWRITE_FONT_PROXY_MESSAGE_FILTER_WIN_H_ |