Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Side by Side Diff: chrome/browser/dom_ui/dom_ui_factory.cc

Issue 5606002: Move:... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/dom_ui/dom_ui.cc ('k') | chrome/browser/dom_ui/dom_ui_favicon_source.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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" 9 #include "chrome/browser/browser_thread.h"
10 #include "chrome/browser/dom_ui/bookmarks_ui.h" 10 #include "chrome/browser/dom_ui/bookmarks_ui.h"
(...skipping 13 matching lines...) Expand all
24 #include "chrome/browser/dom_ui/plugins_ui.h" 24 #include "chrome/browser/dom_ui/plugins_ui.h"
25 #include "chrome/browser/dom_ui/print_preview_ui.h" 25 #include "chrome/browser/dom_ui/print_preview_ui.h"
26 #include "chrome/browser/dom_ui/remoting_ui.h" 26 #include "chrome/browser/dom_ui/remoting_ui.h"
27 #include "chrome/browser/dom_ui/options/options_ui.h" 27 #include "chrome/browser/dom_ui/options/options_ui.h"
28 #include "chrome/browser/dom_ui/slideshow_ui.h" 28 #include "chrome/browser/dom_ui/slideshow_ui.h"
29 #include "chrome/browser/dom_ui/textfields_ui.h" 29 #include "chrome/browser/dom_ui/textfields_ui.h"
30 #include "chrome/browser/extensions/extension_dom_ui.h" 30 #include "chrome/browser/extensions/extension_dom_ui.h"
31 #include "chrome/browser/extensions/extensions_service.h" 31 #include "chrome/browser/extensions/extensions_service.h"
32 #include "chrome/browser/extensions/extensions_ui.h" 32 #include "chrome/browser/extensions/extensions_ui.h"
33 #include "chrome/browser/printing/print_dialog_cloud.h" 33 #include "chrome/browser/printing/print_dialog_cloud.h"
34 #include "chrome/browser/profile.h" 34 #include "chrome/browser/profiles/profile.h"
35 #include "chrome/browser/tab_contents/tab_contents.h" 35 #include "chrome/browser/tab_contents/tab_contents.h"
36 #include "chrome/common/chrome_switches.h" 36 #include "chrome/common/chrome_switches.h"
37 #include "chrome/common/extensions/extension_constants.h" 37 #include "chrome/common/extensions/extension_constants.h"
38 #include "chrome/common/url_constants.h" 38 #include "chrome/common/url_constants.h"
39 #include "googleurl/src/gurl.h" 39 #include "googleurl/src/gurl.h"
40 40
41 #if defined(OS_CHROMEOS) 41 #if defined(OS_CHROMEOS)
42 #include "chrome/browser/chromeos/dom_ui/imageburner_ui.h" 42 #include "chrome/browser/chromeos/dom_ui/imageburner_ui.h"
43 #include "chrome/browser/chromeos/dom_ui/keyboard_overlay_ui.h" 43 #include "chrome/browser/chromeos/dom_ui/keyboard_overlay_ui.h"
44 #include "chrome/browser/chromeos/dom_ui/menu_ui.h" 44 #include "chrome/browser/chromeos/dom_ui/menu_ui.h"
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 if (page_url.host() == chrome::kChromeUIPluginsHost) 320 if (page_url.host() == chrome::kChromeUIPluginsHost)
321 return PluginsUI::GetFaviconResourceBytes(); 321 return PluginsUI::GetFaviconResourceBytes();
322 322
323 #if defined(ENABLE_REMOTING) 323 #if defined(ENABLE_REMOTING)
324 if (page_url.host() == chrome::kChromeUIRemotingHost) 324 if (page_url.host() == chrome::kChromeUIRemotingHost)
325 return RemotingUI::GetFaviconResourceBytes(); 325 return RemotingUI::GetFaviconResourceBytes();
326 #endif 326 #endif
327 327
328 return NULL; 328 return NULL;
329 } 329 }
OLDNEW
« no previous file with comments | « chrome/browser/dom_ui/dom_ui.cc ('k') | chrome/browser/dom_ui/dom_ui_favicon_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698