Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 10 namespace pref_names_util { | |
|
tony
2012/10/30 17:13:16
Oh yeah, this should be in the chrome or chrome_co
Nico
2012/10/30 17:16:12
Really? From jam's content namespace mail: "per th
tony
2012/10/30 20:53:12
That seems like an argument to not have a namespac
| |
| 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". | |
| 15 bool 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_ | |
| OLD | NEW |