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

Unified Diff: chrome/browser/ui/webui/ntp/favicon_webui_handler.cc

Issue 7810007: [ntp4] More UI refinements (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/ntp4/most_visited_page.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/ntp/favicon_webui_handler.cc
===================================================================
--- chrome/browser/ui/webui/ntp/favicon_webui_handler.cc (revision 98872)
+++ chrome/browser/ui/webui/ntp/favicon_webui_handler.cc (working copy)
@@ -29,9 +29,9 @@
void FaviconWebUIHandler::HandleGetFaviconDominantColor(const ListValue* args) {
std::string path;
CHECK(args->GetString(0, &path));
- DCHECK(StartsWithASCII(path, "chrome://favicon/size/32/", false)) <<
+ DCHECK(StartsWithASCII(path, "chrome://favicon/size/16/", false)) <<
"path is " << path;
- path = path.substr(arraysize("chrome://favicon/size/32/") - 1);
+ path = path.substr(arraysize("chrome://favicon/size/16/") - 1);
double id;
CHECK(args->GetDouble(1, &id));
« no previous file with comments | « chrome/browser/resources/ntp4/most_visited_page.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698