Chromium Code Reviews| Index: chrome/browser/chrome_content_browser_client.cc |
| diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc |
| index 4f1ee2f4206a508a3f67b3fb4da4315bc99c9063..06cc4b4916f295407df5cabfb28f7b3bedacc0aa 100644 |
| --- a/chrome/browser/chrome_content_browser_client.cc |
| +++ b/chrome/browser/chrome_content_browser_client.cc |
| @@ -476,6 +476,7 @@ bool CertMatchesFilter(const net::X509Certificate& cert, |
| return false; |
| } |
| +#if !defined(OS_ANDROID) |
| // Fills |map| with the per-script font prefs under path |map_name|. |
| void FillFontFamilyMap(const PrefService* prefs, |
| const char* map_name, |
| @@ -490,8 +491,9 @@ void FillFontFamilyMap(const PrefService* prefs, |
| (*map)[script] = UTF8ToUTF16(font_family); |
| } |
| } |
| +#endif |
|
Nico
2013/11/10 05:07:09
optional: I inserted the endif on line 552 instead
hans
2013/11/11 19:29:51
Done.
|
| -#if defined(OS_POSIX) && !defined(OS_MACOSX) |
| +#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) |
| breakpad::CrashHandlerHostLinux* CreateCrashHandlerHost( |
| const std::string& process_type) { |
| base::FilePath dumps_path; |
| @@ -547,7 +549,7 @@ int GetCrashSignalFD(const CommandLine& command_line) { |
| return -1; |
| } |
| -#endif // defined(OS_POSIX) && !defined(OS_MACOSX) |
| +#endif // defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) |
| #if !defined(OS_CHROMEOS) |
| GURL GetEffectiveURLForSignin(const GURL& url) { |