| 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 1e8943c3be705973860f734c150886d27f0798e3..ba30139db672207179214b93958534da08ee2815 100644
|
| --- a/chrome/browser/ui/webui/about_ui.cc
|
| +++ b/chrome/browser/ui/webui/about_ui.cc
|
| @@ -71,7 +71,7 @@
|
| #include "ui/base/webui/web_ui_util.h"
|
| #include "url/gurl.h"
|
|
|
| -#if defined(ENABLE_THEMES)
|
| +#if !defined(OS_ANDROID)
|
| #include "chrome/browser/ui/webui/theme_source.h"
|
| #endif
|
|
|
| @@ -855,7 +855,7 @@ AboutUI::AboutUI(content::WebUI* web_ui, const std::string& name)
|
| : WebUIController(web_ui) {
|
| Profile* profile = Profile::FromWebUI(web_ui);
|
|
|
| -#if defined(ENABLE_THEMES)
|
| +#if !defined(OS_ANDROID)
|
| // Set up the chrome://theme/ source.
|
| ThemeSource* theme = new ThemeSource(profile);
|
| content::URLDataSource::Add(profile, theme);
|
|
|