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

Issue 22870016: Update the nine patch layer to use UI resources (Closed)

Created:
7 years, 4 months ago by powei
Modified:
7 years, 3 months ago
CC:
chromium-reviews, joi+watch-content_chromium.org, darin-cc_chromium.org, jdduke (slow), ccameron
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Visibility:
Public.

Description

Update the nine patch layer to use UI resources The old nine-patch layer used priority resource manager for requesting textures. This patch updates the nine-patch layer to use the UI resource manager. this patch clarifies the semantics of the aperture in both image and layer The new semantics corresponds to existing logic on the android-side. Changes have been made to UIResourceBitmap to use SkPixelRef as ref-counted of the bitmap content. The android-side changes: https://gerrit-int.chromium.org/#/c/43103/ [Update 8/13/2013] Reverted due to "regression" ( https://code.google.com/p/chromium/issues/detail?id=290215 ): https://codereview.chromium.org/23620047/ [Update 8/13/2013] Reverted due to failed mac_gpu bot: https://codereview.chromium.org/23740010/ BUG=276482, 276487, 290215 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=222732 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=223162 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=224270

Patch Set 1 #

Total comments: 2

Patch Set 2 : Upstreamed code from android side. Added bitmap conversion functions. #

Patch Set 3 : Minor format change and changed initial value for fill_center_ in nine patch layer #

Total comments: 9

Patch Set 4 : Rebasing and addressing previous comments #

Total comments: 11

Patch Set 5 : Updated tests #

Patch Set 6 : Compilation error fixes #

Total comments: 53

Patch Set 7 : Addressed comments by danakj and aelias. Modified tests. #

Total comments: 19

Patch Set 8 : comments by aelias. added invalidation of ui resources to android-side #

Total comments: 24

Patch Set 9 : addressed aelias' latest comments #

Patch Set 10 : UIResourceBitmap holds SkPixelRef* instead of uint8_t* #

Total comments: 13

Patch Set 11 : changed from raw SkPixelRef pointers to skia::RefPtr<SkPixelRef> #

Total comments: 14

Patch Set 12 : rebased and addressed latest comments #

Patch Set 13 : updated comments to reflect changes #

Total comments: 9

Patch Set 14 : updated dchecks in ui_resource_bitmap #

Total comments: 1

Patch Set 15 : ccameron's fix for exisiting nine-patch uses #

Total comments: 1

Patch Set 16 : updated perftest #

Patch Set 17 : addressed failed mac_gpu test #

Patch Set 18 : rebased #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1099 lines, -623 lines) Patch
M cc/layers/nine_patch_layer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +28 lines, -15 lines 0 comments Download
M cc/layers/nine_patch_layer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +102 lines, -69 lines 0 comments Download
M cc/layers/nine_patch_layer_impl.h View 1 2 3 4 5 6 4 chunks +38 lines, -4 lines 0 comments Download
M cc/layers/nine_patch_layer_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 15 chunks +192 lines, -112 lines 0 comments Download
M cc/layers/nine_patch_layer_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 6 chunks +119 lines, -80 lines 0 comments Download
M cc/layers/nine_patch_layer_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 3 chunks +41 lines, -63 lines 0 comments Download
M cc/layers/painted_scrollbar_layer.h View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -2 lines 0 comments Download
M cc/layers/painted_scrollbar_layer.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +6 lines, -9 lines 0 comments Download
M cc/layers/scrollbar_layer_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +5 lines, -4 lines 0 comments Download
M cc/resources/scoped_ui_resource.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +12 lines, -13 lines 0 comments Download
M cc/resources/scoped_ui_resource.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +4 lines, -11 lines 0 comments Download
M cc/resources/ui_resource_bitmap.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +22 lines, -18 lines 0 comments Download
M cc/resources/ui_resource_bitmap.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +33 lines, -13 lines 0 comments Download
M cc/resources/ui_resource_client.h View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -2 lines 0 comments Download
M cc/test/data/10_10_layer_tree.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 56 chunks +262 lines, -102 lines 0 comments Download
M cc/test/fake_scoped_ui_resource.h View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -3 lines 0 comments Download
M cc/test/fake_scoped_ui_resource.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +19 lines, -10 lines 0 comments Download
M cc/test/layer_tree_json_parser.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +15 lines, -0 lines 0 comments Download
M cc/trees/layer_tree_host.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 3 chunks +31 lines, -6 lines 0 comments Download
M cc/trees/layer_tree_host.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 6 chunks +65 lines, -31 lines 0 comments Download
M cc/trees/layer_tree_host_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +6 lines, -5 lines 0 comments Download
M cc/trees/layer_tree_host_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +8 lines, -9 lines 0 comments Download
M cc/trees/layer_tree_host_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +12 lines, -10 lines 0 comments Download
M cc/trees/layer_tree_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -1 line 0 comments Download
M cc/trees/layer_tree_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +3 lines, -3 lines 0 comments Download
M content/browser/renderer_host/compositor_impl_android.h View 1 2 3 4 5 6 7 8 9 4 chunks +10 lines, -0 lines 0 comments Download
M content/browser/renderer_host/compositor_impl_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 4 chunks +24 lines, -0 lines 0 comments Download
M content/public/browser/android/compositor.h View 1 2 3 4 5 6 7 8 9 2 chunks +9 lines, -0 lines 0 comments Download
M content/public/browser/android/compositor_client.h View 1 2 3 4 5 6 7 8 1 chunk +6 lines, -0 lines 0 comments Download
M ui/gfx/android/java_bitmap.h View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -0 lines 0 comments Download
M ui/gfx/android/java_bitmap.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +18 lines, -28 lines 0 comments Download

Messages

Total messages: 63 (0 generated)
powei
Upstream changes for adding UI resources to nine-patch (clank_patch) layer. Please take a look. Thanks.
7 years, 4 months ago (2013-08-19 22:39:16 UTC) #1
jdduke (slow)
https://codereview.chromium.org/22870016/diff/1/content/public/browser/android/compositor.h File content/public/browser/android/compositor.h (right): https://codereview.chromium.org/22870016/diff/1/content/public/browser/android/compositor.h#newcode88 content/public/browser/android/compositor.h:88: // Generates a UIResource and returns a UIResourceId. May ...
7 years, 4 months ago (2013-08-19 23:13:25 UTC) #2
powei
+danakj, ccameron PTAL Upstreamed android-side code. I probably need to work on test changes next. ...
7 years, 4 months ago (2013-08-20 19:59:34 UTC) #3
danakj
chris can answer to backgrounding, but it sounded like no? https://codereview.chromium.org/22870016/diff/11001/cc/layers/nine_patch_layer.cc File cc/layers/nine_patch_layer.cc (right): https://codereview.chromium.org/22870016/diff/11001/cc/layers/nine_patch_layer.cc#newcode61 ...
7 years, 4 months ago (2013-08-20 20:03:52 UTC) #4
ccameron
On 2013/08/20 20:03:52, danakj wrote: > chris can answer to backgrounding, but it sounded like ...
7 years, 4 months ago (2013-08-20 20:07:45 UTC) #5
aelias_OOO_until_Jul13
https://codereview.chromium.org/22870016/diff/22001/cc/layers/nine_patch_layer.h File cc/layers/nine_patch_layer.h (right): https://codereview.chromium.org/22870016/diff/22001/cc/layers/nine_patch_layer.h#newcode35 cc/layers/nine_patch_layer.h:35: void SetBitmap(const SkBitmap& skbitmap, gfx::Rect aperture); Are there any ...
7 years, 4 months ago (2013-08-22 04:55:52 UTC) #6
powei
https://codereview.chromium.org/22870016/diff/11001/cc/layers/nine_patch_layer.cc File cc/layers/nine_patch_layer.cc (right): https://codereview.chromium.org/22870016/diff/11001/cc/layers/nine_patch_layer.cc#newcode61 cc/layers/nine_patch_layer.cc:61: void NinePatchLayer::SetBitmap(UIResourceId resource_id, On 2013/08/20 20:03:53, danakj wrote: > ...
7 years, 4 months ago (2013-08-22 17:58:47 UTC) #7
danakj
https://codereview.chromium.org/22870016/diff/11001/cc/layers/nine_patch_layer.cc File cc/layers/nine_patch_layer.cc (right): https://codereview.chromium.org/22870016/diff/11001/cc/layers/nine_patch_layer.cc#newcode75 cc/layers/nine_patch_layer.cc:75: return resource_.get() && resource_->id(); On 2013/08/22 17:58:47, powei wrote: ...
7 years, 4 months ago (2013-08-22 18:06:10 UTC) #8
danakj
https://codereview.chromium.org/22870016/diff/22001/cc/layers/nine_patch_layer.h File cc/layers/nine_patch_layer.h (right): https://codereview.chromium.org/22870016/diff/22001/cc/layers/nine_patch_layer.h#newcode35 cc/layers/nine_patch_layer.h:35: void SetBitmap(const SkBitmap& skbitmap, gfx::Rect aperture); On 2013/08/22 17:58:47, ...
7 years, 4 months ago (2013-08-22 18:11:59 UTC) #9
danakj
+ccameron
7 years, 4 months ago (2013-08-22 18:12:47 UTC) #10
ccameron
https://codereview.chromium.org/22870016/diff/22001/cc/layers/nine_patch_layer.h File cc/layers/nine_patch_layer.h (right): https://codereview.chromium.org/22870016/diff/22001/cc/layers/nine_patch_layer.h#newcode35 cc/layers/nine_patch_layer.h:35: void SetBitmap(const SkBitmap& skbitmap, gfx::Rect aperture); On 2013/08/22 18:12:00, ...
7 years, 4 months ago (2013-08-22 18:24:17 UTC) #11
powei
Updated the tests. I opened a bug to start the discussion on releasing ui resources ...
7 years, 4 months ago (2013-08-23 01:37:15 UTC) #12
danakj
Hi powei, I went through the patch and have some comments on it. I'd like ...
7 years, 3 months ago (2013-08-27 15:42:47 UTC) #13
aelias_OOO_until_Jul13
https://codereview.chromium.org/22870016/diff/22001/cc/resources/ui_resource.h File cc/resources/ui_resource.h (right): https://codereview.chromium.org/22870016/diff/22001/cc/resources/ui_resource.h#newcode19 cc/resources/ui_resource.h:19: virtual gfx::Size GetSize() = 0; On 2013/08/22 17:58:47, powei ...
7 years, 3 months ago (2013-08-27 18:40:49 UTC) #14
powei
https://codereview.chromium.org/22870016/diff/22001/cc/resources/ui_resource.h File cc/resources/ui_resource.h (right): https://codereview.chromium.org/22870016/diff/22001/cc/resources/ui_resource.h#newcode19 cc/resources/ui_resource.h:19: virtual gfx::Size GetSize() = 0; On 2013/08/27 18:40:49, aelias ...
7 years, 3 months ago (2013-08-27 19:04:57 UTC) #15
danakj
https://codereview.chromium.org/22870016/diff/44001/cc/layers/nine_patch_layer_impl.h File cc/layers/nine_patch_layer_impl.h (right): https://codereview.chromium.org/22870016/diff/44001/cc/layers/nine_patch_layer_impl.h#newcode31 cc/layers/nine_patch_layer_impl.h:31: void set_ui_resource_id(UIResourceId uid) { ui_resource_id_ = uid; } On ...
7 years, 3 months ago (2013-08-27 19:07:12 UTC) #16
aelias_OOO_until_Jul13
https://codereview.chromium.org/22870016/diff/22001/cc/resources/ui_resource.h File cc/resources/ui_resource.h (right): https://codereview.chromium.org/22870016/diff/22001/cc/resources/ui_resource.h#newcode19 cc/resources/ui_resource.h:19: virtual gfx::Size GetSize() = 0; On 2013/08/27 19:04:57, powei ...
7 years, 3 months ago (2013-08-27 19:07:23 UTC) #17
powei
https://codereview.chromium.org/22870016/diff/44001/cc/layers/nine_patch_layer_impl.cc File cc/layers/nine_patch_layer_impl.cc (right): https://codereview.chromium.org/22870016/diff/44001/cc/layers/nine_patch_layer_impl.cc#newcode77 cc/layers/nine_patch_layer_impl.cc:77: if (!ui_resource_id_ || !layer_tree_impl()) On 2013/08/27 15:42:48, danakj wrote: ...
7 years, 3 months ago (2013-08-27 22:39:27 UTC) #18
danakj
https://codereview.chromium.org/22870016/diff/44001/content/browser/renderer_host/compositor_impl_android.h File content/browser/renderer_host/compositor_impl_android.h (right): https://codereview.chromium.org/22870016/diff/44001/content/browser/renderer_host/compositor_impl_android.h#newcode126 content/browser/renderer_host/compositor_impl_android.h:126: typedef base::hash_map<cc::UIResourceId, cc::ScopedUIResource*> On 2013/08/27 22:39:28, powei wrote: > ...
7 years, 3 months ago (2013-08-27 22:43:50 UTC) #19
powei
PTAL. I deleted UIResource and SharedUIResource and moved some of the code to NinePatchLayer. Also ...
7 years, 3 months ago (2013-08-28 20:38:05 UTC) #20
aelias_OOO_until_Jul13
https://codereview.chromium.org/22870016/diff/74018/cc/layers/nine_patch_layer.cc File cc/layers/nine_patch_layer.cc (right): https://codereview.chromium.org/22870016/diff/74018/cc/layers/nine_patch_layer.cc#newcode82 cc/layers/nine_patch_layer.cc:82: image_aperture_ = aperture; Please add an early return if ...
7 years, 3 months ago (2013-08-28 22:28:28 UTC) #21
powei
New patch with some comments addressed. Others need further input. Thanks. https://codereview.chromium.org/22870016/diff/74018/cc/layers/nine_patch_layer.cc File cc/layers/nine_patch_layer.cc (right): ...
7 years, 3 months ago (2013-08-30 05:17:15 UTC) #22
aelias_OOO_until_Jul13
Getting there. My most substantive comment below is to switch UIResourceBitmap to hold an SkPixelRef, ...
7 years, 3 months ago (2013-08-30 06:20:40 UTC) #23
aelias_OOO_until_Jul13
https://codereview.chromium.org/22870016/diff/87001/cc/layers/nine_patch_layer.h File cc/layers/nine_patch_layer.h (right): https://codereview.chromium.org/22870016/diff/87001/cc/layers/nine_patch_layer.h#newcode51 cc/layers/nine_patch_layer.h:51: virtual UIResourceId id() = 0; Thinking about it further ...
7 years, 3 months ago (2013-08-30 18:09:54 UTC) #24
aelias_OOO_until_Jul13
https://codereview.chromium.org/22870016/diff/87001/cc/layers/nine_patch_layer.h File cc/layers/nine_patch_layer.h (right): https://codereview.chromium.org/22870016/diff/87001/cc/layers/nine_patch_layer.h#newcode51 cc/layers/nine_patch_layer.h:51: virtual UIResourceId id() = 0; On 2013/08/30 18:09:54, aelias ...
7 years, 3 months ago (2013-08-30 19:02:40 UTC) #25
powei
new patch. PTAL. thanks. https://codereview.chromium.org/22870016/diff/87001/cc/layers/nine_patch_layer.cc File cc/layers/nine_patch_layer.cc (right): https://codereview.chromium.org/22870016/diff/87001/cc/layers/nine_patch_layer.cc#newcode17 cc/layers/nine_patch_layer.cc:17: class ScopedUIResourceHolder : public cc::NinePatchLayer::UIResourceHolder ...
7 years, 3 months ago (2013-09-03 23:36:05 UTC) #26
aelias_OOO_until_Jul13
https://codereview.chromium.org/22870016/diff/87001/cc/resources/ui_resource_bitmap.cc File cc/resources/ui_resource_bitmap.cc (right): https://codereview.chromium.org/22870016/diff/87001/cc/resources/ui_resource_bitmap.cc#newcode39 cc/resources/ui_resource_bitmap.cc:39: memcpy(dst_pixels, src_pixels, size.GetArea() * 4); On 2013/08/30 06:20:41, aelias ...
7 years, 3 months ago (2013-09-04 03:29:31 UTC) #27
powei
UIResourceBitmap is changed to hold SkPixelRef. Rebasing is needed but waiting on android-side to roll. ...
7 years, 3 months ago (2013-09-05 18:16:46 UTC) #28
jdduke (slow)
https://codereview.chromium.org/22870016/diff/117001/cc/resources/ui_resource_bitmap.h File cc/resources/ui_resource_bitmap.h (right): https://codereview.chromium.org/22870016/diff/117001/cc/resources/ui_resource_bitmap.h#newcode50 cc/resources/ui_resource_bitmap.h:50: SkPixelRef* pixel_ref_; Hmm, if we're going to use an ...
7 years, 3 months ago (2013-09-05 18:39:53 UTC) #29
aelias_OOO_until_Jul13
https://codereview.chromium.org/22870016/diff/117001/cc/resources/ui_resource_bitmap.h File cc/resources/ui_resource_bitmap.h (right): https://codereview.chromium.org/22870016/diff/117001/cc/resources/ui_resource_bitmap.h#newcode50 cc/resources/ui_resource_bitmap.h:50: SkPixelRef* pixel_ref_; On 2013/09/05 18:39:53, jdduke wrote: > Hmm, ...
7 years, 3 months ago (2013-09-05 18:42:31 UTC) #30
jdduke (slow)
https://codereview.chromium.org/22870016/diff/117001/cc/resources/ui_resource_bitmap.h File cc/resources/ui_resource_bitmap.h (right): https://codereview.chromium.org/22870016/diff/117001/cc/resources/ui_resource_bitmap.h#newcode50 cc/resources/ui_resource_bitmap.h:50: SkPixelRef* pixel_ref_; On 2013/09/05 18:42:32, aelias wrote: > On ...
7 years, 3 months ago (2013-09-05 18:51:04 UTC) #31
danakj
https://codereview.chromium.org/22870016/diff/117001/cc/resources/ui_resource_bitmap.h File cc/resources/ui_resource_bitmap.h (right): https://codereview.chromium.org/22870016/diff/117001/cc/resources/ui_resource_bitmap.h#newcode33 cc/resources/ui_resource_bitmap.h:33: UIResourceBitmap(SkPixelRef* pixel_ref, Is this passing ownership with a raw ...
7 years, 3 months ago (2013-09-05 19:23:37 UTC) #32
powei
https://codereview.chromium.org/22870016/diff/117001/cc/resources/ui_resource_bitmap.h File cc/resources/ui_resource_bitmap.h (right): https://codereview.chromium.org/22870016/diff/117001/cc/resources/ui_resource_bitmap.h#newcode33 cc/resources/ui_resource_bitmap.h:33: UIResourceBitmap(SkPixelRef* pixel_ref, On 2013/09/05 19:23:38, danakj wrote: > Is ...
7 years, 3 months ago (2013-09-05 20:37:34 UTC) #33
danakj
https://codereview.chromium.org/22870016/diff/117001/cc/resources/ui_resource_bitmap.h File cc/resources/ui_resource_bitmap.h (right): https://codereview.chromium.org/22870016/diff/117001/cc/resources/ui_resource_bitmap.h#newcode33 cc/resources/ui_resource_bitmap.h:33: UIResourceBitmap(SkPixelRef* pixel_ref, On 2013/09/05 20:37:35, powei wrote: > On ...
7 years, 3 months ago (2013-09-05 20:38:56 UTC) #34
powei
Patch up with skia::RefPtr changes. https://codereview.chromium.org/22870016/diff/117001/cc/resources/ui_resource_bitmap.h File cc/resources/ui_resource_bitmap.h (right): https://codereview.chromium.org/22870016/diff/117001/cc/resources/ui_resource_bitmap.h#newcode33 cc/resources/ui_resource_bitmap.h:33: UIResourceBitmap(SkPixelRef* pixel_ref, On 2013/09/05 ...
7 years, 3 months ago (2013-09-05 21:34:07 UTC) #35
aelias_OOO_until_Jul13
Looking pretty good, I'm glad the SkPixelRef approach works out. https://codereview.chromium.org/22870016/diff/117001/cc/resources/ui_resource_bitmap.cc File cc/resources/ui_resource_bitmap.cc (right): https://codereview.chromium.org/22870016/diff/117001/cc/resources/ui_resource_bitmap.cc#newcode37 ...
7 years, 3 months ago (2013-09-06 04:17:37 UTC) #36
powei
ready for another look. thanks. https://codereview.chromium.org/22870016/diff/128001/cc/layers/nine_patch_layer.cc File cc/layers/nine_patch_layer.cc (right): https://codereview.chromium.org/22870016/diff/128001/cc/layers/nine_patch_layer.cc#newcode91 cc/layers/nine_patch_layer.cc:91: SetNeedsPushProperties(); On 2013/09/06 04:17:38, ...
7 years, 3 months ago (2013-09-09 17:57:17 UTC) #37
aelias_OOO_until_Jul13
Could you update the title and write a detailed description of what this patch does? ...
7 years, 3 months ago (2013-09-09 21:43:44 UTC) #38
powei
On 2013/09/09 21:43:44, aelias wrote: > Could you update the title and write a detailed ...
7 years, 3 months ago (2013-09-09 22:42:13 UTC) #39
aelias_OOO_until_Jul13
lgtm. Adding yfriedman@ for OWNERS review of ui/gfx/android/. Please also wait for ccameron@ to take ...
7 years, 3 months ago (2013-09-09 23:11:09 UTC) #40
aelias_OOO_until_Jul13
The first line of your commit description should be the same as the title. Also, ...
7 years, 3 months ago (2013-09-09 23:13:50 UTC) #41
Yaron
https://codereview.chromium.org/22870016/diff/163001/ui/gfx/android/java_bitmap.cc File ui/gfx/android/java_bitmap.cc (right): https://codereview.chromium.org/22870016/diff/163001/ui/gfx/android/java_bitmap.cc#newcode95 ui/gfx/android/java_bitmap.cc:95: SkBitmap bitmap = CreateSkBitmapFromJavaBitmap(jbitmap); You dropped the SkBitmap null-check. ...
7 years, 3 months ago (2013-09-10 00:28:38 UTC) #42
powei
https://codereview.chromium.org/22870016/diff/117001/cc/resources/ui_resource_bitmap.cc File cc/resources/ui_resource_bitmap.cc (right): https://codereview.chromium.org/22870016/diff/117001/cc/resources/ui_resource_bitmap.cc#newcode37 cc/resources/ui_resource_bitmap.cc:37: DCHECK_EQ(skbitmap.config(), SkBitmap::kARGB_8888_Config); On 2013/09/06 04:17:37, aelias wrote: > Please ...
7 years, 3 months ago (2013-09-10 00:42:43 UTC) #43
Yaron
lgtm https://codereview.chromium.org/22870016/diff/163001/ui/gfx/android/java_bitmap.h File ui/gfx/android/java_bitmap.h (right): https://codereview.chromium.org/22870016/diff/163001/ui/gfx/android/java_bitmap.h#newcode47 ui/gfx/android/java_bitmap.h:47: UI_EXPORT SkBitmap CreateSkBitmapFromJavaBitmap(JavaBitmap& jbitmap); On 2013/09/10 00:42:44, powei ...
7 years, 3 months ago (2013-09-10 01:23:02 UTC) #44
ccameron
I applied this locally, and this causes the overhang shadow nine-patch layer to disappear on ...
7 years, 3 months ago (2013-09-10 20:26:02 UTC) #45
powei
On 2013/09/10 20:26:02, ccameron1 wrote: > I applied this locally, and this causes the overhang ...
7 years, 3 months ago (2013-09-10 20:29:01 UTC) #46
ccameron
It's that and some lifetime issues. I'll drop by to figure out how to sort ...
7 years, 3 months ago (2013-09-10 21:18:29 UTC) #47
powei
On 2013/09/10 21:18:29, ccameron1 wrote: > It's that and some lifetime issues. I'll drop by ...
7 years, 3 months ago (2013-09-11 19:59:10 UTC) #48
ccameron
This lgtm -- thanks!!
7 years, 3 months ago (2013-09-11 20:06:10 UTC) #49
powei
On 2013/09/11 20:06:10, ccameron1 wrote: > This lgtm -- thanks!! Thanks everyone, for your help ...
7 years, 3 months ago (2013-09-11 20:07:31 UTC) #50
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/powei@chromium.org/22870016/184001
7 years, 3 months ago (2013-09-11 20:08:23 UTC) #51
commit-bot: I haz the power
Step "update" is always a major failure. Look at the try server FAQ for more ...
7 years, 3 months ago (2013-09-11 20:16:08 UTC) #52
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/powei@chromium.org/22870016/184001
7 years, 3 months ago (2013-09-12 02:51:14 UTC) #53
commit-bot: I haz the power
Change committed as 222732
7 years, 3 months ago (2013-09-12 06:18:21 UTC) #54
powei
PTAL. Only changes are the updated perftest files: cc/test/layer_tree_json_parser.cc cc/test/data/10_10_layer_tree.json And one bug that I ...
7 years, 3 months ago (2013-09-13 17:42:01 UTC) #55
aelias_OOO_until_Jul13
lgtm
7 years, 3 months ago (2013-09-13 18:11:48 UTC) #56
powei
On 2013/09/13 18:11:48, aelias wrote: > lgtm thanks. I'm going to land this, but note ...
7 years, 3 months ago (2013-09-13 19:32:00 UTC) #57
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/powei@chromium.org/22870016/189001
7 years, 3 months ago (2013-09-13 19:34:21 UTC) #58
commit-bot: I haz the power
Change committed as 223162
7 years, 3 months ago (2013-09-13 23:25:12 UTC) #59
powei
On 2013/09/13 23:25:12, I haz the power (commit-bot) wrote: > Change committed as 223162 This ...
7 years, 3 months ago (2013-09-19 00:40:27 UTC) #60
ccameron
This works locally for me. lgtm. Sorry for the delay!
7 years, 3 months ago (2013-09-19 19:08:23 UTC) #61
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/powei@chromium.org/22870016/256001
7 years, 3 months ago (2013-09-19 20:15:02 UTC) #62
commit-bot: I haz the power
7 years, 3 months ago (2013-09-20 03:34:29 UTC) #63
Message was sent while issue was closed.
Change committed as 224270

Powered by Google App Engine
This is Rietveld 408576698