| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/dom_ui/dom_ui_factory.h" | 5 #include "chrome/browser/dom_ui/dom_ui_factory.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "chrome/browser/about_flags.h" | 8 #include "chrome/browser/about_flags.h" |
| 9 #include "chrome/browser/browser_thread.h" | |
| 10 #include "chrome/browser/dom_ui/bookmarks_ui.h" | 9 #include "chrome/browser/dom_ui/bookmarks_ui.h" |
| 11 #include "chrome/browser/dom_ui/bug_report_ui.h" | 10 #include "chrome/browser/dom_ui/bug_report_ui.h" |
| 12 #include "chrome/browser/dom_ui/constrained_html_ui.h" | 11 #include "chrome/browser/dom_ui/constrained_html_ui.h" |
| 13 #include "chrome/browser/dom_ui/downloads_ui.h" | 12 #include "chrome/browser/dom_ui/downloads_ui.h" |
| 14 #include "chrome/browser/dom_ui/devtools_ui.h" | 13 #include "chrome/browser/dom_ui/devtools_ui.h" |
| 15 #include "chrome/browser/dom_ui/history_ui.h" | 14 #include "chrome/browser/dom_ui/history_ui.h" |
| 16 #include "chrome/browser/dom_ui/history2_ui.h" | 15 #include "chrome/browser/dom_ui/history2_ui.h" |
| 17 #include "chrome/browser/dom_ui/html_dialog_ui.h" | 16 #include "chrome/browser/dom_ui/html_dialog_ui.h" |
| 18 #include "chrome/browser/dom_ui/flags_ui.h" | 17 #include "chrome/browser/dom_ui/flags_ui.h" |
| 19 #include "chrome/browser/dom_ui/net_internals_ui.h" | 18 #include "chrome/browser/dom_ui/net_internals_ui.h" |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 if (page_url.host() == chrome::kChromeUIPluginsHost) | 323 if (page_url.host() == chrome::kChromeUIPluginsHost) |
| 325 return PluginsUI::GetFaviconResourceBytes(); | 324 return PluginsUI::GetFaviconResourceBytes(); |
| 326 | 325 |
| 327 #if defined(ENABLE_REMOTING) | 326 #if defined(ENABLE_REMOTING) |
| 328 if (page_url.host() == chrome::kChromeUIRemotingHost) | 327 if (page_url.host() == chrome::kChromeUIRemotingHost) |
| 329 return RemotingUI::GetFaviconResourceBytes(); | 328 return RemotingUI::GetFaviconResourceBytes(); |
| 330 #endif | 329 #endif |
| 331 | 330 |
| 332 return NULL; | 331 return NULL; |
| 333 } | 332 } |
| OLD | NEW |