1// Copyright (c) 2012 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.
4
5#ifndef CHROME_COMMON_PREF_NAMES_UTIL_H_
6#define CHROME_COMMON_PREF_NAMES_UTIL_H_
7
8#include <string>
9
10namespace pref_names_util {
11
12// Extracts the generic family and script from font name pref path |pref_path|.
13// For example, if |pref_path| is "webkit.webprefs.fonts.serif.Hang", returns
14// true and sets |generic_family| to "serif" and |script| to "Hang".
15bool ParseFontNamePrefPath(const std::string& pref_path,
16                           std::string* generic_family,
17                           std::string* script);
18
19}  // namespace pref_names_util
20
21#endif  // CHROME_COMMON_PREF_NAMES_UTIL_H_
22