| 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 "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/extensions/extension_service.h" | 9 #include "chrome/browser/extensions/extension_service.h" |
| 10 #include "chrome/browser/extensions/extension_web_ui.h" | 10 #include "chrome/browser/extensions/extension_web_ui.h" |
| (...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 // allows to use ExtensionWebUI::GetFaviconForURL. | 472 // allows to use ExtensionWebUI::GetFaviconForURL. |
| 473 GURL url(page_url); | 473 GURL url(page_url); |
| 474 ExtensionWebUI::HandleChromeURLOverride(&url, profile); | 474 ExtensionWebUI::HandleChromeURLOverride(&url, profile); |
| 475 | 475 |
| 476 // All extensions but the bookmark manager get their favicon from the icons | 476 // All extensions but the bookmark manager get their favicon from the icons |
| 477 // part of the manifest. | 477 // part of the manifest. |
| 478 if (url.SchemeIs(chrome::kExtensionScheme) && | 478 if (url.SchemeIs(chrome::kExtensionScheme) && |
| 479 url.host() != extension_misc::kBookmarkManagerId) { | 479 url.host() != extension_misc::kBookmarkManagerId) { |
| 480 ExtensionWebUI::GetFaviconForURL(profile, request, url); | 480 ExtensionWebUI::GetFaviconForURL(profile, request, url); |
| 481 } else { | 481 } else { |
| 482 history::FaviconData favicon; | 482 scoped_refptr<base::RefCountedMemory> bitmap(GetFaviconResourceBytes(url)); |
| 483 favicon.image_data = scoped_refptr<base::RefCountedMemory>( | 483 history::FaviconData favicon_data; |
| 484 GetFaviconResourceBytes(url)); | 484 favicon_data.known_icon = bitmap.get() != NULL && bitmap->size() > 0; |
| 485 favicon.known_icon = favicon.image_data.get() != NULL && | 485 favicon_data.icon_type = history::FAVICON; |
| 486 favicon.image_data->size() > 0; | 486 history::FaviconDataElement element; |
| 487 favicon.icon_type = history::FAVICON; | 487 element.bitmap_data = bitmap; |
| 488 request->ForwardResultAsync(request->handle(), favicon); | 488 element.pixel_size = gfx::Size(); |
| 489 favicon_data.elements.push_back(element); |
| 490 request->ForwardResultAsync(request->handle(), favicon_data); |
| 489 } | 491 } |
| 490 } | 492 } |
| 491 | 493 |
| 492 // static | 494 // static |
| 493 ChromeWebUIControllerFactory* ChromeWebUIControllerFactory::GetInstance() { | 495 ChromeWebUIControllerFactory* ChromeWebUIControllerFactory::GetInstance() { |
| 494 return Singleton< ChromeWebUIControllerFactory, PossibleTestSingletonTraits< | 496 return Singleton< ChromeWebUIControllerFactory, PossibleTestSingletonTraits< |
| 495 ChromeWebUIControllerFactory, TestChromeWebUIControllerFactory> >::get(); | 497 ChromeWebUIControllerFactory, TestChromeWebUIControllerFactory> >::get(); |
| 496 } | 498 } |
| 497 | 499 |
| 498 ChromeWebUIControllerFactory::ChromeWebUIControllerFactory() { | 500 ChromeWebUIControllerFactory::ChromeWebUIControllerFactory() { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 if (page_url.host() == chrome::kChromeUISettingsFrameHost) | 546 if (page_url.host() == chrome::kChromeUISettingsFrameHost) |
| 545 return options::OptionsUI::GetFaviconResourceBytes(); | 547 return options::OptionsUI::GetFaviconResourceBytes(); |
| 546 | 548 |
| 547 // Android doesn't use the plugins pages. | 549 // Android doesn't use the plugins pages. |
| 548 if (page_url.host() == chrome::kChromeUIPluginsHost) | 550 if (page_url.host() == chrome::kChromeUIPluginsHost) |
| 549 return PluginsUI::GetFaviconResourceBytes(); | 551 return PluginsUI::GetFaviconResourceBytes(); |
| 550 #endif | 552 #endif |
| 551 | 553 |
| 552 return NULL; | 554 return NULL; |
| 553 } | 555 } |
| OLD | NEW |