| Index: chrome/renderer/searchbox/searchbox.cc
|
| diff --git a/chrome/renderer/searchbox/searchbox.cc b/chrome/renderer/searchbox/searchbox.cc
|
| index be43fba07e768e872383326e04cdb20a9c5a6629..52edc986e2123014af82da580012b673fa8c1fda 100644
|
| --- a/chrome/renderer/searchbox/searchbox.cc
|
| +++ b/chrome/renderer/searchbox/searchbox.cc
|
| @@ -63,10 +63,6 @@ const char* GetIconTypeUrlHost(SearchBox::ImageSourceType type) {
|
| switch (type) {
|
| case SearchBox::FAVICON:
|
| return "favicon";
|
| - case SearchBox::LARGE_ICON:
|
| - return "large-icon";
|
| - case SearchBox::FALLBACK_ICON:
|
| - return "fallback-icon";
|
| case SearchBox::THUMB:
|
| return "thumb";
|
| default:
|
| @@ -85,14 +81,6 @@ int GetImagePathStartOfPageURL(SearchBox::ImageSourceType type,
|
| chrome::ParsedFaviconPath parsed;
|
| return chrome::ParseFaviconPath(path, &parsed) ? parsed.path_index : -1;
|
| }
|
| - case SearchBox::LARGE_ICON: {
|
| - LargeIconUrlParser parser;
|
| - return parser.Parse(path) ? parser.path_index() : -1;
|
| - }
|
| - case SearchBox::FALLBACK_ICON: {
|
| - chrome::ParsedFallbackIconPath parser;
|
| - return parser.Parse(path) ? parser.path_index() : -1;
|
| - }
|
| case SearchBox::THUMB: {
|
| return 0;
|
| }
|
|
|