OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/ui/webui/chrome_web_ui_controller_factory.h" | 5 #include "chrome/browser/ui/webui/chrome_web_ui_controller_factory.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 #endif | 81 #endif |
82 | 82 |
83 #if defined(ENABLE_WEBRTC) | 83 #if defined(ENABLE_WEBRTC) |
84 #include "chrome/browser/ui/webui/media/webrtc_logs_ui.h" | 84 #include "chrome/browser/ui/webui/media/webrtc_logs_ui.h" |
85 #endif | 85 #endif |
86 | 86 |
87 #if defined(ENABLE_PRINT_PREVIEW) | 87 #if defined(ENABLE_PRINT_PREVIEW) |
88 #include "chrome/browser/ui/webui/print_preview/print_preview_ui.h" | 88 #include "chrome/browser/ui/webui/print_preview/print_preview_ui.h" |
89 #endif | 89 #endif |
90 | 90 |
91 #if defined(ENABLE_MEDIA_ROUTER) | 91 #if defined(ENABLE_MEDIA_ROUTER) && !defined(OS_ANDROID) |
92 #include "chrome/browser/ui/webui/media_router/media_router_ui.h" | 92 #include "chrome/browser/ui/webui/media_router/media_router_ui.h" |
93 #endif | 93 #endif |
94 | 94 |
95 #if !defined(OS_ANDROID) | 95 #if !defined(OS_ANDROID) |
96 #include "chrome/browser/ui/webui/ntp/new_tab_ui.h" | 96 #include "chrome/browser/ui/webui/ntp/new_tab_ui.h" |
97 #include "chrome/browser/ui/webui/quota_internals/quota_internals_ui.h" | 97 #include "chrome/browser/ui/webui/quota_internals/quota_internals_ui.h" |
98 #include "chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_in
ternals_ui.h" | 98 #include "chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_in
ternals_ui.h" |
99 #include "chrome/browser/ui/webui/system_info_ui.h" | 99 #include "chrome/browser/ui/webui/system_info_ui.h" |
100 #include "chrome/browser/ui/webui/uber/uber_ui.h" | 100 #include "chrome/browser/ui/webui/uber/uber_ui.h" |
101 #endif | 101 #endif |
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
548 #endif | 548 #endif |
549 #if defined(ENABLE_SERVICE_DISCOVERY) | 549 #if defined(ENABLE_SERVICE_DISCOVERY) |
550 if (url.host() == chrome::kChromeUIDevicesHost) { | 550 if (url.host() == chrome::kChromeUIDevicesHost) { |
551 return &NewWebUI<LocalDiscoveryUI>; | 551 return &NewWebUI<LocalDiscoveryUI>; |
552 } | 552 } |
553 #endif | 553 #endif |
554 #if defined(ENABLE_WEBRTC) | 554 #if defined(ENABLE_WEBRTC) |
555 if (url.host() == chrome::kChromeUIWebRtcLogsHost) | 555 if (url.host() == chrome::kChromeUIWebRtcLogsHost) |
556 return &NewWebUI<WebRtcLogsUI>; | 556 return &NewWebUI<WebRtcLogsUI>; |
557 #endif | 557 #endif |
558 #if defined(ENABLE_MEDIA_ROUTER) | 558 #if defined(ENABLE_MEDIA_ROUTER) && !defined(OS_ANDROID) |
559 if (url.host() == chrome::kChromeUIMediaRouterHost && | 559 if (url.host() == chrome::kChromeUIMediaRouterHost && |
560 switches::MediaRouterEnabled()) { | 560 switches::MediaRouterEnabled()) { |
561 return &NewWebUI<media_router::MediaRouterUI>; | 561 return &NewWebUI<media_router::MediaRouterUI>; |
562 } | 562 } |
563 #endif | 563 #endif |
564 if (IsAboutUI(url)) | 564 if (IsAboutUI(url)) |
565 return &NewWebUI<AboutUI>; | 565 return &NewWebUI<AboutUI>; |
566 | 566 |
567 if (IsEnableDomDistillerSet() && | 567 if (IsEnableDomDistillerSet() && |
568 url.host() == dom_distiller::kChromeUIDomDistillerHost) { | 568 url.host() == dom_distiller::kChromeUIDomDistillerHost) { |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
755 #endif | 755 #endif |
756 | 756 |
757 // Android doesn't use the plugins pages. | 757 // Android doesn't use the plugins pages. |
758 if (page_url.host() == chrome::kChromeUIPluginsHost) | 758 if (page_url.host() == chrome::kChromeUIPluginsHost) |
759 return PluginsUI::GetFaviconResourceBytes(scale_factor); | 759 return PluginsUI::GetFaviconResourceBytes(scale_factor); |
760 | 760 |
761 #endif | 761 #endif |
762 | 762 |
763 return NULL; | 763 return NULL; |
764 } | 764 } |
OLD | NEW |