| 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 9582c04603e2732dbe63744647f9d19c2b1fb577..1e8943c3be705973860f734c150886d27f0798e3 100644
|
| --- a/chrome/browser/ui/webui/about_ui.cc
|
| +++ b/chrome/browser/ui/webui/about_ui.cc
|
| @@ -424,7 +424,7 @@ std::string ChromeURLs() {
|
| return html;
|
| }
|
|
|
| -#if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS)
|
| +#if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
|
|
|
| const char kAboutDiscardsRunCommand[] = "run";
|
|
|
| @@ -582,7 +582,7 @@ std::string AboutDiscards(const std::string& path) {
|
| return output;
|
| }
|
|
|
| -#endif // OS_WIN || OS_CHROMEOS
|
| +#endif // OS_WIN || OS_MACOSX || OS_LINUX
|
|
|
| // AboutDnsHandler bounces the request back to the IO thread to collect
|
| // the DNS information.
|
| @@ -780,7 +780,7 @@ void AboutUIHTMLSource::StartDataRequest(
|
| } else {
|
| response = raw_response.as_string();
|
| }
|
| -#if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS)
|
| +#if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
|
| } else if (source_name_ == chrome::kChromeUIDiscardsHost) {
|
| response = AboutDiscards(path);
|
| #endif
|
|
|