Commit b9954bd9 authored by Dominik Röttsches's avatar Dominik Röttsches Committed by Commit Bot

Rename dwrite_font_proxy_message_filter* files to ...impl

DWriteFontProxy is no longer implemented as a message filter but is
a regular Mojo service now.

Rename files from *_message_filter_* to *_impl_*.

Change-Id: I8e5202993c45168636a2e09287f69da397ac5092
Reviewed-on: https://chromium-review.googlesource.com/c/1392345
Commit-Queue: Dominik Röttsches <drott@chromium.org>
Reviewed-by: default avatarAvi Drissman <avi@chromium.org>
Cr-Commit-Position: refs/heads/master@{#619608}
parent a906d906
......@@ -1306,8 +1306,8 @@ jumbo_source_set("browser") {
"renderer_host/dip_util.h",
"renderer_host/display_util.cc",
"renderer_host/display_util.h",
"renderer_host/dwrite_font_proxy_message_filter_win.cc",
"renderer_host/dwrite_font_proxy_message_filter_win.h",
"renderer_host/dwrite_font_proxy_impl_win.cc",
"renderer_host/dwrite_font_proxy_impl_win.h",
"renderer_host/embedded_frame_sink_impl.cc",
"renderer_host/embedded_frame_sink_impl.h",
"renderer_host/embedded_frame_sink_provider_impl.cc",
......
......@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/renderer_host/dwrite_font_proxy_message_filter_win.h"
#include "content/browser/renderer_host/dwrite_font_proxy_impl_win.h"
#include <dwrite.h>
#include <shlobj.h>
......@@ -143,8 +143,8 @@ bool CheckRequiredStylesPresent(IDWriteFontCollection* collection,
}
mswr::ComPtr<IDWriteFont> font;
if (FAILED(family->GetFirstMatchingFont(
font_style.required_weight, font_style.required_stretch,
font_style.required_style, &font))) {
font_style.required_weight, font_style.required_stretch,
font_style.required_style, &font))) {
DCHECK(false);
return true;
}
......
......@@ -2,8 +2,8 @@
// 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_
#ifndef CONTENT_BROWSER_RENDERER_HOST_DWRITE_FONT_PROXY_IMPL_WIN_H_
#define CONTENT_BROWSER_RENDERER_HOST_DWRITE_FONT_PROXY_IMPL_WIN_H_
#include <dwrite.h>
#include <dwrite_2.h>
......
......@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/renderer_host/dwrite_font_proxy_message_filter_win.h"
#include "content/browser/renderer_host/dwrite_font_proxy_impl_win.h"
#include <dwrite.h>
#include <dwrite_2.h>
......
......@@ -30,7 +30,7 @@
#include "ui/base/ui_base_features.h"
#if defined(OS_WIN)
#include "content/browser/renderer_host/dwrite_font_proxy_message_filter_win.h"
#include "content/browser/renderer_host/dwrite_font_proxy_impl_win.h"
#include "content/public/common/font_cache_dispatcher_win.h"
#elif defined(OS_MACOSX)
#include "content/browser/sandbox_support_mac_impl.h"
......
......@@ -1520,7 +1520,7 @@ test("content_unittests") {
"../browser/presentation/presentation_service_impl_unittest.cc",
"../browser/renderer_host/clipboard_host_impl_unittest.cc",
"../browser/renderer_host/cursor_manager_unittest.cc",
"../browser/renderer_host/dwrite_font_proxy_message_filter_win_unittest.cc",
"../browser/renderer_host/dwrite_font_proxy_impl_win_unittest.cc",
"../browser/renderer_host/embedded_frame_sink_provider_impl_unittest.cc",
"../browser/renderer_host/frame_token_message_queue_unittest.cc",
"../browser/renderer_host/input/fling_controller_unittest.cc",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment