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

Issue 24632002: Implementing chrome://thumbnails page to view URLs in TopSites and cached thumbnails. (Closed)

Created:
7 years, 2 months ago by huangs
Modified:
7 years, 2 months ago
Reviewers:
beaudoin, sky
CC:
chromium-reviews, dbeam+watch-ntp_chromium.org, mad+watch_chromium.org, skanuj+watch_chromium.org, melevin+watch_chromium.org, dhollowa+watch_chromium.org, dougw+watch_chromium.org, donnd+watch_chromium.org, browser-components-watch_chromium.org, dominich, jfweitz+watch_chromium.org, David Black, samarth+watch_chromium.org, estade+watch_chromium.org, kmadhusu+watch_chromium.org, Jered, pedrosimonetti+watch_chromium.org
Visibility:
Public.

Description

Implementing chrome://thumbnails page to view URLs in TopSites and cached thumbnails. BUG=298240 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=226411

Patch Set 1 : #

Patch Set 2 : Embedding thumbs via data:image/png;base64,; removing HasPageThumbnail(). #

Total comments: 4

Patch Set 3 : Comment fixes. #

Total comments: 8

Patch Set 4 : Code cleanup; removing unneeded wrapper struct. #

Patch Set 5 : Move ThumbnailListSource::weak_ptr_factory_ after other members. #

Patch Set 6 : Sync. #

Patch Set 7 : Trying to fix Linux compile by reordering initializing order of weak_ptr_factory_. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+265 lines, -100 lines) Patch
M chrome/browser/history/top_sites.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/history/top_sites_cache.h View 1 2 3 3 chunks +12 lines, -10 lines 0 comments Download
M chrome/browser/history/top_sites_cache.cc View 1 7 chunks +17 lines, -15 lines 0 comments Download
M chrome/browser/history/top_sites_impl.h View 1 1 chunk +0 lines, -1 line 0 comments Download
M chrome/browser/history/top_sites_impl.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/search/instant_service.cc View 1 2 3 4 5 2 chunks +2 lines, -1 line 0 comments Download
M chrome/browser/thumbnails/thumbnail_service.h View 1 2 chunks +4 lines, -2 lines 0 comments Download
M chrome/browser/thumbnails/thumbnail_service_impl.cc View 1 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/ui/webui/ntp/most_visited_handler.cc View 2 chunks +5 lines, -4 lines 0 comments Download
A + chrome/browser/ui/webui/ntp/thumbnail_list_source.h View 1 2 3 4 1 chunk +67 lines, -64 lines 0 comments Download
A chrome/browser/ui/webui/ntp/thumbnail_list_source.cc View 1 2 3 4 5 6 1 chunk +148 lines, -0 lines 0 comments Download
M chrome/chrome_browser_ui.gypi View 1 2 3 4 5 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/common/url_constants.h View 1 2 3 4 5 2 chunks +2 lines, -0 lines 0 comments Download
M chrome/common/url_constants.cc View 1 2 3 4 5 2 chunks +2 lines, -0 lines 0 comments Download

Messages

Total messages: 19 (0 generated)
huangs
This is a preliminary, functional CL that loads images with chrome://thumb. A screen shot is ...
7 years, 2 months ago (2013-09-25 18:18:00 UTC) #1
huangs
Embedded the thumbnails via Base64. Now the page is self-contained, and the rather redundant HasPageThumbnail() ...
7 years, 2 months ago (2013-09-25 19:50:41 UTC) #2
huangs
There are some residual cleanups in the files I touched. I think we're better off ...
7 years, 2 months ago (2013-09-25 19:51:36 UTC) #3
beaudoin
LGTM, nits. https://codereview.chromium.org/24632002/diff/6001/chrome/browser/ui/webui/ntp/thumbnail_list_source.cc File chrome/browser/ui/webui/ntp/thumbnail_list_source.cc (right): https://codereview.chromium.org/24632002/diff/6001/chrome/browser/ui/webui/ntp/thumbnail_list_source.cc#newcode41 chrome/browser/ui/webui/ntp/thumbnail_list_source.cc:41: // If |show_thumbnail| == true, then render ...
7 years, 2 months ago (2013-09-25 21:36:36 UTC) #4
huangs
OWNER review for sky@, PTAL. https://codereview.chromium.org/24632002/diff/6001/chrome/browser/ui/webui/ntp/thumbnail_list_source.cc File chrome/browser/ui/webui/ntp/thumbnail_list_source.cc (right): https://codereview.chromium.org/24632002/diff/6001/chrome/browser/ui/webui/ntp/thumbnail_list_source.cc#newcode41 chrome/browser/ui/webui/ntp/thumbnail_list_source.cc:41: // If |show_thumbnail| == ...
7 years, 2 months ago (2013-09-25 21:49:26 UTC) #5
huangs
Ping sky@ for OWNER review.
7 years, 2 months ago (2013-09-30 17:23:49 UTC) #6
sky
https://codereview.chromium.org/24632002/diff/13001/chrome/browser/ui/webui/ntp/thumbnail_list_source.cc File chrome/browser/ui/webui/ntp/thumbnail_list_source.cc (right): https://codereview.chromium.org/24632002/diff/13001/chrome/browser/ui/webui/ntp/thumbnail_list_source.cc#newcode34 chrome/browser/ui/webui/ntp/thumbnail_list_source.cc:34: const history::MostVisitedURL* mv_url; Can you copy the url here. ...
7 years, 2 months ago (2013-09-30 20:46:16 UTC) #7
huangs
PTAL. https://codereview.chromium.org/24632002/diff/13001/chrome/browser/ui/webui/ntp/thumbnail_list_source.cc File chrome/browser/ui/webui/ntp/thumbnail_list_source.cc (right): https://codereview.chromium.org/24632002/diff/13001/chrome/browser/ui/webui/ntp/thumbnail_list_source.cc#newcode34 chrome/browser/ui/webui/ntp/thumbnail_list_source.cc:34: const history::MostVisitedURL* mv_url; I was being silly in ...
7 years, 2 months ago (2013-09-30 22:07:11 UTC) #8
sky
LGTM
7 years, 2 months ago (2013-09-30 22:37:55 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/huangs@chromium.org/24632002/32001
7 years, 2 months ago (2013-10-01 14:50:13 UTC) #10
commit-bot: I haz the power
Failed to apply patch for chrome/browser/search/instant_service.cc: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
7 years, 2 months ago (2013-10-01 14:50:19 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/huangs@chromium.org/24632002/37001
7 years, 2 months ago (2013-10-01 16:09:10 UTC) #12
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 2 months ago (2013-10-01 16:45:16 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/huangs@chromium.org/24632002/51001
7 years, 2 months ago (2013-10-01 18:04:16 UTC) #14
commit-bot: I haz the power
Retried try job too often on android_dbg for step(s) slave_steps http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=android_dbg&number=108203
7 years, 2 months ago (2013-10-01 19:12:40 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/huangs@chromium.org/24632002/51001
7 years, 2 months ago (2013-10-01 23:50:41 UTC) #16
commit-bot: I haz the power
Retried try job too often on win_rel for step(s) chrome_frame_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=win_rel&number=204318
7 years, 2 months ago (2013-10-02 01:13:56 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/huangs@chromium.org/24632002/51001
7 years, 2 months ago (2013-10-02 04:53:26 UTC) #18
commit-bot: I haz the power
7 years, 2 months ago (2013-10-02 07:07:05 UTC) #19
Message was sent while issue was closed.
Change committed as 226411

Powered by Google App Engine
This is Rietveld 408576698