| Index: chrome/browser/ui/webui/about_ui.cc
|
| diff --git a/chrome/browser/ui/webui/about_ui.cc b/chrome/browser/ui/webui/about_ui.cc
|
| index 62fc4184cd52b90bf7e3dc2a568b5e5404778849..63a555c08d6be8c9df88470d3ed14fbae97205d7 100644
|
| --- a/chrome/browser/ui/webui/about_ui.cc
|
| +++ b/chrome/browser/ui/webui/about_ui.cc
|
| @@ -1041,6 +1041,7 @@ void AboutUIHTMLSource::StartDataRequest(
|
| #endif
|
| } else if (source_name_ == chrome::kChromeUIStatsHost) {
|
| response = AboutStats(path);
|
| +#if !defined(OS_ANDROID)
|
| } else if (source_name_ == chrome::kChromeUITermsHost) {
|
| #if defined(OS_CHROMEOS)
|
| ChromeOSTermsHandler::Start(path, callback);
|
| @@ -1048,6 +1049,7 @@ void AboutUIHTMLSource::StartDataRequest(
|
| #else
|
| response = l10n_util::GetStringUTF8(IDS_TERMS_HTML);
|
| #endif
|
| +#endif
|
| }
|
|
|
| FinishDataRequest(response, callback);
|
|
|