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

Unified Diff: chrome/browser/web_applications/update_shortcut_worker_win.cc

Issue 335233003: Convert ui::ScaleFactor -> float in favicon/history code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix size_t Created 6 years, 6 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
Index: chrome/browser/web_applications/update_shortcut_worker_win.cc
diff --git a/chrome/browser/web_applications/update_shortcut_worker_win.cc b/chrome/browser/web_applications/update_shortcut_worker_win.cc
index e447f4b3fd31d5894652ad464fc9a54c075bd879..995ed66fc18d1339e5ef51f558532a3515e7689c 100644
--- a/chrome/browser/web_applications/update_shortcut_worker_win.cc
+++ b/chrome/browser/web_applications/update_shortcut_worker_win.cc
@@ -106,10 +106,8 @@ void UpdateShortcutWorker::DidDownloadFavicon(
requested_sizes_in_pixel.push_back(requested_size);
std::vector<size_t> closest_indices;
- SelectFaviconFrameIndices(original_sizes,
- requested_sizes_in_pixel,
- &closest_indices,
- NULL);
+ SelectFaviconFrameIndices(
+ original_sizes, requested_sizes_in_pixel, &closest_indices, NULL);
SkBitmap bitmap;
if (!bitmaps.empty()) {

Powered by Google App Engine
This is Rietveld 408576698