Rename isSystemLocationEnabled to isLocationEnabled, as per internal review (185995).
[chromium-blink-merge.git] / chrome / utility / font_cache_handler_win.cc
blob19e097ba542694d5ec274f978125cf00fc6a727b
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/utility/font_cache_handler_win.h"
7 #include "chrome/common/chrome_utility_messages.h"
8 #include "content/public/common/dwrite_font_platform_win.h"
9 #include "content/public/utility/utility_thread.h"
11 bool FontCacheHandler::OnMessageReceived(const IPC::Message& message) {
12 bool handled = true;
13 IPC_BEGIN_MESSAGE_MAP(FontCacheHandler, message)
14 IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_BuildDirectWriteFontCache,
15 OnBuildFontCache)
16 IPC_MESSAGE_UNHANDLED(handled = false)
17 IPC_END_MESSAGE_MAP()
18 return handled;
21 void FontCacheHandler::OnBuildFontCache(const base::FilePath& full_path) {
22 content::BuildFontCache(full_path);
23 content::UtilityThread::Get()->ReleaseProcessIfNeeded();