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

Issue 259863007: Local salient image storage for enhanced bookmark experiment. (Closed)

Created:
6 years, 7 months ago by Kibeom Kim (inactive)
Modified:
6 years, 6 months ago
CC:
chromium-reviews, browser-components-watch_chromium.org, Ted C, Yaron
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Visibility:
Public.

Description

Local salient image storage for enhanced bookmark experiment. BUG=368034 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=269703

Patch Set 1 #

Total comments: 4

Patch Set 2 : nits #

Total comments: 51

Patch Set 3 : addressed comments #

Patch Set 4 : added image.ToUIImage(); #

Patch Set 5 : rebase #

Patch Set 6 : header&constructor&destructor fix #

Patch Set 7 : header naming fix #

Patch Set 8 : . #

Patch Set 9 : added thread consistency DCHECK #

Patch Set 10 : removed ios and minor fixes #

Patch Set 11 : minor bookmarks.gypi clean up #

Total comments: 2

Patch Set 12 : independent bookmarks_enhanced component, added NonThreadSafe to ImageStore class #

Total comments: 2

Patch Set 13 : Changed from NonThreadSafe to ThreadChecker #

Total comments: 55

Patch Set 14 : addressed patch set 13's comment except the saving only 1x image issue #

Patch Set 15 : use jpeg #

Patch Set 16 : comment update #

Patch Set 17 : removed unneeded header include #

Total comments: 16

Patch Set 18 : addressed patch set 17's comments #

Total comments: 6

Patch Set 19 : gyp fix #

Patch Set 20 : addressed patch set 18's comments #

Patch Set 21 : components_tests.gyp fix (missed gyp generation failed) #

Patch Set 22 : add gtest to bookmarks_enhanced.gypi #

Total comments: 2

Patch Set 23 : TEST_IMAGE_STORE #

Patch Set 24 : rebase + compiler error fixes on windows and ios #

Total comments: 2

Patch Set 25 : move image_store_unittest.cc to components_unittests target #

Total comments: 12

Patch Set 26 : patch set 25's comments #

Patch Set 27 : rebase #

Patch Set 28 : apply_issue step fail test #

Patch Set 29 : revert test #

Total comments: 10

Patch Set 30 : patch set 29's comments #

Patch Set 31 : gyp reordering #

Total comments: 3

Patch Set 32 : remove 'enhanced_bookmarks/image_store_unittest.cc', from ios black list #

Patch Set 33 : gyp renaming fix #

Total comments: 2

Patch Set 34 : kBitmap::allocN32Pixels() #

Total comments: 7

Patch Set 35 : remove sql query string indent #

Patch Set 36 : tools/metrics/histograms/histograms.xml #

Total comments: 2

Patch Set 37 : DISALLOW_COPY_AND_ASSIGN(ImageStore); #

Patch Set 38 : windows compiler error fix #

Patch Set 39 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+821 lines, -1 line) Patch
M components/components.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -0 lines 0 comments Download
M components/components_tests.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 3 chunks +6 lines, -1 line 0 comments Download
A components/enhanced_bookmarks.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 1 chunk +51 lines, -0 lines 0 comments Download
A components/enhanced_bookmarks/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +11 lines, -0 lines 0 comments Download
A components/enhanced_bookmarks/OWNERS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +2 lines, -0 lines 0 comments Download
A components/enhanced_bookmarks/image_store.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +67 lines, -0 lines 0 comments Download
A components/enhanced_bookmarks/image_store.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +24 lines, -0 lines 0 comments Download
A components/enhanced_bookmarks/image_store_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 1 chunk +221 lines, -0 lines 0 comments Download
A components/enhanced_bookmarks/image_store_util.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +27 lines, -0 lines 0 comments Download
A components/enhanced_bookmarks/image_store_util.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +33 lines, -0 lines 0 comments Download
A components/enhanced_bookmarks/persistent_image_store.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +42 lines, -0 lines 0 comments Download
A components/enhanced_bookmarks/persistent_image_store.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 1 chunk +226 lines, -0 lines 0 comments Download
A components/enhanced_bookmarks/test_image_store.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +36 lines, -0 lines 0 comments Download
A components/enhanced_bookmarks/test_image_store.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +73 lines, -0 lines 0 comments Download
M tools/metrics/histograms/histograms.xml View 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 83 (0 generated)
Kibeom Kim (inactive)
Moving ios repository enhanced bookmark code to upstream. I made only trivial changes on these ...
6 years, 7 months ago (2014-04-28 23:41:48 UTC) #1
tfarina
Do we checkin code that has "no" callers yet? Are you planning to upload the ...
6 years, 7 months ago (2014-04-29 02:46:50 UTC) #2
Kibeom Kim (inactive)
On 2014/04/29 02:46:50, tfarina wrote: > Do we checkin code that has "no" callers yet? ...
6 years, 7 months ago (2014-04-29 06:26:19 UTC) #3
noyau (Ping after 24h)
lgtm with nits. But then again, as I wrote this code in the first place ...
6 years, 7 months ago (2014-04-29 08:17:39 UTC) #4
Kibeom Kim (inactive)
https://codereview.chromium.org/259863007/diff/1/chrome/browser/bookmarks/enhanced/image_store.h File chrome/browser/bookmarks/enhanced/image_store.h (right): https://codereview.chromium.org/259863007/diff/1/chrome/browser/bookmarks/enhanced/image_store.h#newcode1 chrome/browser/bookmarks/enhanced/image_store.h:1: // Copyright 2013 The Chromium Authors. All rights reserved. ...
6 years, 7 months ago (2014-04-29 08:22:48 UTC) #5
sky
https://codereview.chromium.org/259863007/diff/20001/chrome/browser/bookmarks/enhanced/image_store.cc File chrome/browser/bookmarks/enhanced/image_store.cc (right): https://codereview.chromium.org/259863007/diff/20001/chrome/browser/bookmarks/enhanced/image_store.cc#newcode4 chrome/browser/bookmarks/enhanced/image_store.cc:4: #include "chrome/browser/bookmarks/enhanced/image_store.h" nit: newline between 3/4. https://codereview.chromium.org/259863007/diff/20001/chrome/browser/bookmarks/enhanced/image_store.cc#newcode21 chrome/browser/bookmarks/enhanced/image_store.cc:21: scoped_refptr<base::RefCountedMemory> ...
6 years, 7 months ago (2014-04-30 18:09:12 UTC) #6
sky
https://codereview.chromium.org/259863007/diff/20001/chrome/chrome_browser.gypi File chrome/chrome_browser.gypi (right): https://codereview.chromium.org/259863007/diff/20001/chrome/chrome_browser.gypi#newcode311 chrome/chrome_browser.gypi:311: 'browser/bookmarks/enhanced/image_store.cc', One more, shouldn't these only be built where ...
6 years, 7 months ago (2014-04-30 21:10:32 UTC) #7
Kibeom Kim (inactive)
https://codereview.chromium.org/259863007/diff/20001/chrome/browser/bookmarks/enhanced/image_store.cc File chrome/browser/bookmarks/enhanced/image_store.cc (right): https://codereview.chromium.org/259863007/diff/20001/chrome/browser/bookmarks/enhanced/image_store.cc#newcode4 chrome/browser/bookmarks/enhanced/image_store.cc:4: #include "chrome/browser/bookmarks/enhanced/image_store.h" On 2014/04/30 18:09:13, sky wrote: > nit: ...
6 years, 7 months ago (2014-05-01 19:02:26 UTC) #8
sky
https://codereview.chromium.org/259863007/diff/20001/chrome/browser/bookmarks/enhanced/image_store.h File chrome/browser/bookmarks/enhanced/image_store.h (right): https://codereview.chromium.org/259863007/diff/20001/chrome/browser/bookmarks/enhanced/image_store.h#newcode18 chrome/browser/bookmarks/enhanced/image_store.h:18: class ImageStore : public base::RefCounted<ImageStore> { On 2014/05/01 19:02:26, ...
6 years, 7 months ago (2014-05-01 20:11:55 UTC) #9
sky
Also, how about DCHECKs that this isn't on the UI thread?
6 years, 7 months ago (2014-05-01 20:12:08 UTC) #10
Kibeom Kim (inactive)
On 2014/05/01 20:11:55, sky wrote: > https://codereview.chromium.org/259863007/diff/20001/chrome/browser/bookmarks/enhanced/image_store.h > File chrome/browser/bookmarks/enhanced/image_store.h (right): > > https://codereview.chromium.org/259863007/diff/20001/chrome/browser/bookmarks/enhanced/image_store.h#newcode18 > ...
6 years, 7 months ago (2014-05-01 23:56:28 UTC) #11
noyau (Ping after 24h)
On 2014/05/01 23:56:28, Kibeom Kim wrote: > On 2014/05/01 20:11:55, sky wrote: > > > ...
6 years, 7 months ago (2014-05-02 12:53:07 UTC) #12
noyau (Ping after 24h)
6 years, 7 months ago (2014-05-02 12:53:14 UTC) #13
Kibeom Kim (inactive)
ptal. added thread consistency checking (including destructor) and removed ios parts. I'll do ios as ...
6 years, 7 months ago (2014-05-02 20:53:16 UTC) #14
sky
Ben suggested moving this code to it's own component, maybe bookmarks-enhanced or something. That way ...
6 years, 7 months ago (2014-05-02 21:58:41 UTC) #15
noyau (Ping after 24h)
https://codereview.chromium.org/259863007/diff/180001/components/bookmarks/core/browser/enhanced/image_store.h File components/bookmarks/core/browser/enhanced/image_store.h (right): https://codereview.chromium.org/259863007/diff/180001/components/bookmarks/core/browser/enhanced/image_store.h#newcode62 components/bookmarks/core/browser/enhanced/image_store.h:62: bool IsRunningThreadConsistent(); Couldn't you use base::NonThreadSafe instead?
6 years, 7 months ago (2014-05-04 17:27:11 UTC) #16
Kibeom Kim (inactive)
moved to bookmarks_enhanced component https://codereview.chromium.org/259863007/diff/180001/components/bookmarks/core/browser/enhanced/image_store.h File components/bookmarks/core/browser/enhanced/image_store.h (right): https://codereview.chromium.org/259863007/diff/180001/components/bookmarks/core/browser/enhanced/image_store.h#newcode62 components/bookmarks/core/browser/enhanced/image_store.h:62: bool IsRunningThreadConsistent(); On 2014/05/04 17:27:12, ...
6 years, 7 months ago (2014-05-05 17:35:46 UTC) #17
tfarina
https://codereview.chromium.org/259863007/diff/200001/components/bookmarks_enhanced/image_store.h File components/bookmarks_enhanced/image_store.h (right): https://codereview.chromium.org/259863007/diff/200001/components/bookmarks_enhanced/image_store.h#newcode19 components/bookmarks_enhanced/image_store.h:19: class ImageStore : public base::NonThreadSafe, No, do not use ...
6 years, 7 months ago (2014-05-05 17:42:58 UTC) #18
Kibeom Kim (inactive)
https://codereview.chromium.org/259863007/diff/200001/components/bookmarks_enhanced/image_store.h File components/bookmarks_enhanced/image_store.h (right): https://codereview.chromium.org/259863007/diff/200001/components/bookmarks_enhanced/image_store.h#newcode19 components/bookmarks_enhanced/image_store.h:19: class ImageStore : public base::NonThreadSafe, On 2014/05/05 17:42:59, tfarina ...
6 years, 7 months ago (2014-05-05 17:55:49 UTC) #19
noyau (Ping after 24h)
https://codereview.chromium.org/259863007/diff/210001/components/bookmarks_enhanced/image_store_unittest.cc File components/bookmarks_enhanced/image_store_unittest.cc (right): https://codereview.chromium.org/259863007/diff/210001/components/bookmarks_enhanced/image_store_unittest.cc#newcode17 components/bookmarks_enhanced/image_store_unittest.cc:17: const SkBitmap CreateBitmap(int width, int height, int a, int ...
6 years, 7 months ago (2014-05-05 18:09:49 UTC) #20
Kibeom Kim (inactive)
https://codereview.chromium.org/259863007/diff/210001/components/bookmarks_enhanced/image_store_unittest.cc File components/bookmarks_enhanced/image_store_unittest.cc (right): https://codereview.chromium.org/259863007/diff/210001/components/bookmarks_enhanced/image_store_unittest.cc#newcode17 components/bookmarks_enhanced/image_store_unittest.cc:17: const SkBitmap CreateBitmap(int width, int height, int a, int ...
6 years, 7 months ago (2014-05-05 18:21:33 UTC) #21
sky
https://codereview.chromium.org/259863007/diff/210001/chrome/chrome_browser.gypi File chrome/chrome_browser.gypi (right): https://codereview.chromium.org/259863007/diff/210001/chrome/chrome_browser.gypi#newcode32 chrome/chrome_browser.gypi:32: '../components/components.gyp:bookmarks_enhanced', Remove the conditionals from components/bookmarks_enhanced.gypi and instead only ...
6 years, 7 months ago (2014-05-06 16:14:19 UTC) #22
Kibeom Kim (inactive)
didn't address saving only 1x image issue yet. https://codereview.chromium.org/259863007/diff/210001/chrome/chrome_browser.gypi File chrome/chrome_browser.gypi (right): https://codereview.chromium.org/259863007/diff/210001/chrome/chrome_browser.gypi#newcode32 chrome/chrome_browser.gypi:32: '../components/components.gyp:bookmarks_enhanced', ...
6 years, 7 months ago (2014-05-07 00:09:45 UTC) #23
Kibeom Kim (inactive)
https://codereview.chromium.org/259863007/diff/210001/components/bookmarks_enhanced/image_store_util_android.cc File components/bookmarks_enhanced/image_store_util_android.cc (right): https://codereview.chromium.org/259863007/diff/210001/components/bookmarks_enhanced/image_store_util_android.cc#newcode10 components/bookmarks_enhanced/image_store_util_android.cc:10: return image.As1xPNGBytes(); On 2014/05/06 16:14:20, sky wrote: > How ...
6 years, 7 months ago (2014-05-07 09:56:29 UTC) #24
sky
https://codereview.chromium.org/259863007/diff/210001/components/bookmarks_enhanced/image_store_util_android.cc File components/bookmarks_enhanced/image_store_util_android.cc (right): https://codereview.chromium.org/259863007/diff/210001/components/bookmarks_enhanced/image_store_util_android.cc#newcode10 components/bookmarks_enhanced/image_store_util_android.cc:10: return image.As1xPNGBytes(); On 2014/05/07 09:56:30, Kibeom Kim wrote: > ...
6 years, 7 months ago (2014-05-07 16:25:29 UTC) #25
Kibeom Kim (inactive)
https://codereview.chromium.org/259863007/diff/210001/components/bookmarks_enhanced/image_store_util_android.cc File components/bookmarks_enhanced/image_store_util_android.cc (right): https://codereview.chromium.org/259863007/diff/210001/components/bookmarks_enhanced/image_store_util_android.cc#newcode10 components/bookmarks_enhanced/image_store_util_android.cc:10: return image.As1xPNGBytes(); On 2014/05/07 16:25:30, sky wrote: > On ...
6 years, 7 months ago (2014-05-08 00:02:18 UTC) #26
sky
https://codereview.chromium.org/259863007/diff/210001/components/bookmarks_enhanced/persistent_image_store.cc File components/bookmarks_enhanced/persistent_image_store.cc (right): https://codereview.chromium.org/259863007/diff/210001/components/bookmarks_enhanced/persistent_image_store.cc#newcode169 components/bookmarks_enhanced/persistent_image_store.cc:169: OpenDatabase(); On 2014/05/07 00:09:46, Kibeom Kim wrote: > On ...
6 years, 7 months ago (2014-05-08 15:33:07 UTC) #27
tfarina
https://codereview.chromium.org/259863007/diff/290001/components/bookmarks_enhanced.gypi File components/bookmarks_enhanced.gypi (right): https://codereview.chromium.org/259863007/diff/290001/components/bookmarks_enhanced.gypi#newcode20 components/bookmarks_enhanced.gypi:20: 'bookmarks_enhanced/image_store.h', fix indentation here, only two spaces from ' ...
6 years, 7 months ago (2014-05-08 15:41:07 UTC) #28
sky
https://codereview.chromium.org/259863007/diff/290001/components/bookmarks_enhanced/memory_image_store.h File components/bookmarks_enhanced/memory_image_store.h (right): https://codereview.chromium.org/259863007/diff/290001/components/bookmarks_enhanced/memory_image_store.h#newcode13 components/bookmarks_enhanced/memory_image_store.h:13: class MemoryImageStore : public ImageStore { One more. How ...
6 years, 7 months ago (2014-05-08 15:58:05 UTC) #29
Kibeom Kim (inactive)
https://codereview.chromium.org/259863007/diff/210001/components/bookmarks_enhanced/persistent_image_store.cc File components/bookmarks_enhanced/persistent_image_store.cc (right): https://codereview.chromium.org/259863007/diff/210001/components/bookmarks_enhanced/persistent_image_store.cc#newcode169 components/bookmarks_enhanced/persistent_image_store.cc:169: OpenDatabase(); On 2014/05/08 15:33:08, sky wrote: > On 2014/05/07 ...
6 years, 7 months ago (2014-05-08 17:56:32 UTC) #30
tfarina
Forgot to upload? I don't see a new patchset for the new changes.
6 years, 7 months ago (2014-05-08 18:01:29 UTC) #31
tfarina
On 2014/05/08 18:01:29, tfarina wrote: > Forgot to upload? I don't see a new patchset ...
6 years, 7 months ago (2014-05-08 18:02:00 UTC) #32
tfarina
https://codereview.chromium.org/259863007/diff/310001/components/bookmarks_enhanced.gypi File components/bookmarks_enhanced.gypi (right): https://codereview.chromium.org/259863007/diff/310001/components/bookmarks_enhanced.gypi#newcode20 components/bookmarks_enhanced.gypi:20: 'bookmarks_enhanced/image_store.h', sort this list, i.e., .cc before .h https://codereview.chromium.org/259863007/diff/310001/components/components_tests.gyp ...
6 years, 7 months ago (2014-05-08 18:07:58 UTC) #33
Kibeom Kim (inactive)
https://codereview.chromium.org/259863007/diff/310001/components/bookmarks_enhanced.gypi File components/bookmarks_enhanced.gypi (right): https://codereview.chromium.org/259863007/diff/310001/components/bookmarks_enhanced.gypi#newcode20 components/bookmarks_enhanced.gypi:20: 'bookmarks_enhanced/image_store.h', On 2014/05/08 18:07:59, tfarina wrote: > sort this ...
6 years, 7 months ago (2014-05-08 18:33:28 UTC) #34
Kibeom Kim (inactive)
missed that gyp generation failed, uploaded a new one.
6 years, 7 months ago (2014-05-08 18:58:54 UTC) #35
sky
LGTM https://codereview.chromium.org/259863007/diff/390001/components/bookmarks_enhanced/test_image_store.h File components/bookmarks_enhanced/test_image_store.h (right): https://codereview.chromium.org/259863007/diff/390001/components/bookmarks_enhanced/test_image_store.h#newcode5 components/bookmarks_enhanced/test_image_store.h:5: #ifndef COMPONENTS_BOOKMARKS_ENHANCED_MEMORY_IMAGE_STORE_H_ TEST_IMAGE_STORE
6 years, 7 months ago (2014-05-08 19:13:34 UTC) #36
Kibeom Kim (inactive)
https://codereview.chromium.org/259863007/diff/390001/components/bookmarks_enhanced/test_image_store.h File components/bookmarks_enhanced/test_image_store.h (right): https://codereview.chromium.org/259863007/diff/390001/components/bookmarks_enhanced/test_image_store.h#newcode5 components/bookmarks_enhanced/test_image_store.h:5: #ifndef COMPONENTS_BOOKMARKS_ENHANCED_MEMORY_IMAGE_STORE_H_ On 2014/05/08 19:13:35, sky wrote: > TEST_IMAGE_STORE ...
6 years, 7 months ago (2014-05-08 19:16:46 UTC) #37
tfarina
https://codereview.chromium.org/259863007/diff/430001/components/bookmarks_enhanced.gypi File components/bookmarks_enhanced.gypi (right): https://codereview.chromium.org/259863007/diff/430001/components/bookmarks_enhanced.gypi#newcode46 components/bookmarks_enhanced.gypi:46: 'bookmarks_enhanced/image_store_unittest.cc', No. The unittest.cc goes into the components_unittests target
6 years, 7 months ago (2014-05-08 19:57:18 UTC) #38
Kibeom Kim (inactive)
https://codereview.chromium.org/259863007/diff/430001/components/bookmarks_enhanced.gypi File components/bookmarks_enhanced.gypi (right): https://codereview.chromium.org/259863007/diff/430001/components/bookmarks_enhanced.gypi#newcode46 components/bookmarks_enhanced.gypi:46: 'bookmarks_enhanced/image_store_unittest.cc', On 2014/05/08 19:57:19, tfarina wrote: > No. The ...
6 years, 7 months ago (2014-05-08 20:02:02 UTC) #39
Kibeom Kim (inactive)
OWNER +blundell components/components.gyp components/bookmarks_enhanced/DEPS
6 years, 7 months ago (2014-05-08 20:06:15 UTC) #40
tfarina
https://codereview.chromium.org/259863007/diff/450001/components/bookmarks_enhanced/image_store_unittest.cc File components/bookmarks_enhanced/image_store_unittest.cc (right): https://codereview.chromium.org/259863007/diff/450001/components/bookmarks_enhanced/image_store_unittest.cc#newcode62 components/bookmarks_enhanced/image_store_unittest.cc:62: scoped_refptr<ImageStore> createStore(base::ScopedTempDir& folder); CamelCase for all these functions. https://codereview.chromium.org/259863007/diff/450001/components/bookmarks_enhanced/image_store_unittest.cc#newcode88 ...
6 years, 7 months ago (2014-05-08 20:37:24 UTC) #41
Kibeom Kim (inactive)
https://codereview.chromium.org/259863007/diff/450001/components/bookmarks_enhanced/image_store_unittest.cc File components/bookmarks_enhanced/image_store_unittest.cc (right): https://codereview.chromium.org/259863007/diff/450001/components/bookmarks_enhanced/image_store_unittest.cc#newcode62 components/bookmarks_enhanced/image_store_unittest.cc:62: scoped_refptr<ImageStore> createStore(base::ScopedTempDir& folder); On 2014/05/08 20:37:25, tfarina wrote: > ...
6 years, 7 months ago (2014-05-08 21:16:21 UTC) #42
blundell
LGTM I assume that you're going to add the iOS-specific support needed in a followup? ...
6 years, 7 months ago (2014-05-09 08:17:47 UTC) #43
Kibeom Kim (inactive)
https://codereview.chromium.org/259863007/diff/530001/components/bookmarks_enhanced.gypi File components/bookmarks_enhanced.gypi (right): https://codereview.chromium.org/259863007/diff/530001/components/bookmarks_enhanced.gypi#newcode8 components/bookmarks_enhanced.gypi:8: 'target_name': 'bookmarks_enhanced', On 2014/05/09 08:17:48, blundell wrote: > Nit: ...
6 years, 7 months ago (2014-05-09 09:44:40 UTC) #44
blundell
SLGTM Thanks for the bookmarks_enhanced -> enhanced_bookmarks change; it reads much better to me. https://codereview.chromium.org/259863007/diff/570001/components/bookmarks_enhanced.gypi ...
6 years, 7 months ago (2014-05-09 09:49:32 UTC) #45
Kibeom Kim (inactive)
thanks for all the reviews so far! https://codereview.chromium.org/259863007/diff/570001/components/components_tests.gyp File components/components_tests.gyp (right): https://codereview.chromium.org/259863007/diff/570001/components/components_tests.gyp#newcode357 components/components_tests.gyp:357: 'enhanced_bookmarks/image_store_unittest.cc', On ...
6 years, 7 months ago (2014-05-09 09:51:49 UTC) #46
Kibeom Kim (inactive)
The CQ bit was checked by kkimlabs@chromium.org
6 years, 7 months ago (2014-05-09 11:00:13 UTC) #47
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/kkimlabs@chromium.org/259863007/600001
6 years, 7 months ago (2014-05-09 11:01:20 UTC) #48
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). Please consider checking whether the failures are ...
6 years, 7 months ago (2014-05-09 13:00:49 UTC) #49
Kibeom Kim (inactive)
The CQ bit was unchecked by kkimlabs@chromium.org
6 years, 7 months ago (2014-05-09 13:04:30 UTC) #50
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 7 months ago (2014-05-09 13:06:26 UTC) #51
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/chromium_presubmit/builds/66778)
6 years, 7 months ago (2014-05-09 13:06:28 UTC) #52
Kibeom Kim (inactive)
components/enhanced_bookmarks/DEPS +bsalomon for adding '+third_party/skia', to DEPS +shess for adding '+sql', to DEPS
6 years, 7 months ago (2014-05-09 14:00:42 UTC) #53
bsalomon
https://codereview.chromium.org/259863007/diff/600001/components/enhanced_bookmarks/image_store_unittest.cc File components/enhanced_bookmarks/image_store_unittest.cc (right): https://codereview.chromium.org/259863007/diff/600001/components/enhanced_bookmarks/image_store_unittest.cc#newcode19 components/enhanced_bookmarks/image_store_unittest.cc:19: bitmap.setConfig(SkBitmap::kARGB_8888_Config, width, height); Can you use SkBitmap::allocN32Pixels() here instead ...
6 years, 7 months ago (2014-05-09 14:17:18 UTC) #54
Kibeom Kim (inactive)
https://codereview.chromium.org/259863007/diff/600001/components/enhanced_bookmarks/image_store_unittest.cc File components/enhanced_bookmarks/image_store_unittest.cc (right): https://codereview.chromium.org/259863007/diff/600001/components/enhanced_bookmarks/image_store_unittest.cc#newcode19 components/enhanced_bookmarks/image_store_unittest.cc:19: bitmap.setConfig(SkBitmap::kARGB_8888_Config, width, height); On 2014/05/09 14:17:19, bsalomon wrote: > ...
6 years, 7 months ago (2014-05-09 14:28:21 UTC) #55
Scott Hess - ex-Googler
sql/ dependency LGTM. I made some comments, but if I understand the review thread correctly, ...
6 years, 7 months ago (2014-05-09 17:51:35 UTC) #56
Kibeom Kim (inactive)
The CQ bit was checked by kkimlabs@chromium.org
6 years, 7 months ago (2014-05-09 22:46:29 UTC) #57
Kibeom Kim (inactive)
The CQ bit was unchecked by kkimlabs@chromium.org
6 years, 7 months ago (2014-05-09 22:49:23 UTC) #58
Kibeom Kim (inactive)
I'll do other things as a follow-up cls thanks! https://codereview.chromium.org/259863007/diff/620001/components/enhanced_bookmarks/persistent_image_store.cc File components/enhanced_bookmarks/persistent_image_store.cc (right): https://codereview.chromium.org/259863007/diff/620001/components/enhanced_bookmarks/persistent_image_store.cc#newcode103 components/enhanced_bookmarks/persistent_image_store.cc:103: ...
6 years, 7 months ago (2014-05-09 22:52:28 UTC) #59
Kibeom Kim (inactive)
The CQ bit was checked by kkimlabs@chromium.org
6 years, 7 months ago (2014-05-09 22:52:42 UTC) #60
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/kkimlabs@chromium.org/259863007/640001
6 years, 7 months ago (2014-05-09 22:56:49 UTC) #61
Kibeom Kim (inactive)
+jar tools/metrics/histograms/histograms.xml
6 years, 7 months ago (2014-05-09 23:12:18 UTC) #62
Kibeom Kim (inactive)
https://codereview.chromium.org/259863007/diff/620001/components/enhanced_bookmarks/persistent_image_store.cc File components/enhanced_bookmarks/persistent_image_store.cc (right): https://codereview.chromium.org/259863007/diff/620001/components/enhanced_bookmarks/persistent_image_store.cc#newcode41 components/enhanced_bookmarks/persistent_image_store.cc:41: db.set_histogram_tag("BookmarkImages"); On 2014/05/09 17:51:36, shess wrote: > Good! The ...
6 years, 7 months ago (2014-05-09 23:13:04 UTC) #63
jar (doing other things)
histograms.xml LGTM ...also.... nit below as drive by (but I didn't read the other code ...
6 years, 7 months ago (2014-05-10 00:07:06 UTC) #64
Kibeom Kim (inactive)
https://codereview.chromium.org/259863007/diff/650001/components/enhanced_bookmarks/image_store.h File components/enhanced_bookmarks/image_store.h (right): https://codereview.chromium.org/259863007/diff/650001/components/enhanced_bookmarks/image_store.h#newcode63 components/enhanced_bookmarks/image_store.h:63: }; On 2014/05/10 00:07:08, jar wrote: > nit: DISALLOW_COPY_AND_ASSIGN ...
6 years, 7 months ago (2014-05-10 00:14:51 UTC) #65
Kibeom Kim (inactive)
The CQ bit was checked by kkimlabs@chromium.org
6 years, 7 months ago (2014-05-10 00:15:08 UTC) #66
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/kkimlabs@chromium.org/259863007/670001
6 years, 7 months ago (2014-05-10 00:18:44 UTC) #67
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). Please consider checking whether the failures are ...
6 years, 7 months ago (2014-05-10 04:09:57 UTC) #68
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 7 months ago (2014-05-10 04:14:18 UTC) #69
commit-bot: I haz the power
Try jobs failed on following builders: android_chromium_gn_compile_rel on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/android_chromium_gn_compile_rel/builds/3145) linux_chromium_chromeos_rel on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/linux_chromium_chromeos_rel/builds/25327) linux_chromium_clang_dbg ...
6 years, 7 months ago (2014-05-10 04:14:18 UTC) #70
Kibeom Kim (inactive)
The CQ bit was checked by kkimlabs@chromium.org
6 years, 7 months ago (2014-05-10 04:31:54 UTC) #71
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/kkimlabs@chromium.org/259863007/670001
6 years, 7 months ago (2014-05-10 04:35:38 UTC) #72
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). Please consider checking whether the failures are ...
6 years, 7 months ago (2014-05-10 05:55:15 UTC) #73
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 7 months ago (2014-05-10 05:58:31 UTC) #74
commit-bot: I haz the power
Try jobs failed on following builders: android_chromium_gn_compile_rel on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/android_chromium_gn_compile_rel/builds/3157) chromium_presubmit on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/chromium_presubmit/builds/67006) linux_chromium_chromeos_rel ...
6 years, 7 months ago (2014-05-10 05:58:33 UTC) #75
Kibeom Kim (inactive)
The CQ bit was checked by kkimlabs@chromium.org
6 years, 7 months ago (2014-05-10 21:09:30 UTC) #76
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/kkimlabs@chromium.org/259863007/690001
6 years, 7 months ago (2014-05-10 21:10:28 UTC) #77
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). Please consider checking whether the failures are ...
6 years, 7 months ago (2014-05-11 00:55:44 UTC) #78
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 7 months ago (2014-05-11 00:58:39 UTC) #79
commit-bot: I haz the power
Try jobs failed on following builders: android_chromium_gn_compile_rel on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/android_chromium_gn_compile_rel/builds/3210) linux_chromium_clang_dbg on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/linux_chromium_clang_dbg/builds/23989)
6 years, 7 months ago (2014-05-11 00:58:40 UTC) #80
Kibeom Kim (inactive)
The CQ bit was checked by kkimlabs@chromium.org
6 years, 7 months ago (2014-05-11 06:46:22 UTC) #81
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/kkimlabs@chromium.org/259863007/710001
6 years, 7 months ago (2014-05-11 06:46:36 UTC) #82
commit-bot: I haz the power
6 years, 7 months ago (2014-05-11 14:19:56 UTC) #83
Message was sent while issue was closed.
Change committed as 269703

Powered by Google App Engine
This is Rietveld 408576698