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

Issue 848863002: PPAPI: implement GetSupportedPreviewSizes (Closed)

Created:
5 years, 11 months ago by Justin Chuang
Modified:
5 years, 10 months ago
CC:
binji+watch_chromium.org, chromium-reviews, darin-cc_chromium.org, feature-media-reviews_chromium.org, ihf+watch_chromium.org, jam, mcasas+watch_chromium.org, miu+watch_chromium.org, mkwst+moarreviews-renderer_chromium.org, mlamouri+watch-content_chromium.org, nfullagar1, noelallen1, piman+watch_chromium.org, posciak+watch_chromium.org, raymes+watch_chromium.org, teravest+watch_chromium.org, tzik, wjia+watch_chromium.org, yusukes+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

PPAPI: implement GetSupportedPreviewSizes 1. Support PPB_CameraCapabilities_Private.GetSupportedPreviewSizes() 2. Implement basic skeleton of image capture PPAPI BUG=387547 TEST=Call the API from a trusted plugin and print all preview sizes. Committed: https://crrev.com/add2f05d32384647371c56bba67bec3fc2f1ee2f Cr-Commit-Position: refs/heads/master@{#316552}

Patch Set 1 : Empty skeleton #

Patch Set 2 : Rebase to ToT and connect PPAPI CameraCapabilities #

Patch Set 3 : fix compile error after rebase #

Patch Set 4 : Implement GetSupportedPreviewSizes #

Patch Set 5 : Fix compile error on Linux build #

Total comments: 76

Patch Set 6 : Address comments in Patch Set 4 #

Patch Set 7 : Remove video_capture_types.* #

Total comments: 22

Patch Set 8 : Address reviews #

Patch Set 9 : Split ImageCapture_Config to 881743005 #

Total comments: 14

Patch Set 10 : Split API design changes to 887403003 #

Total comments: 16

Patch Set 11 : Address WuCheng's comments in Patch Set 9/10 #

Total comments: 38

Patch Set 12 : Only 'git cl format' #

Patch Set 13 : Address comments in Patch Set 11 #

Patch Set 14 : Rebase #

Patch Set 15 : Fix some comments #

Patch Set 16 : Fix a compile error #

Total comments: 48

Patch Set 17 : Address comments in Patch Set 16 #

Patch Set 18 : Fix msg name & refactor callback handling #

Total comments: 4

Patch Set 19 : Rebase #

Patch Set 20 : Revert callback refactoring #

Patch Set 21 : Refactor out get_capabilities_output_ #

Patch Set 22 : Rebase again #

Patch Set 23 : Update histogram.xml with pepper_hash_for_uma #

Total comments: 27

Patch Set 24 : Address comments in Patch Set 23 #

Patch Set 25 : Update content_renderer_pepper_host_factory.cc #

Patch Set 26 : Fix OnPluginMsgOpenReply #

Patch Set 27 : Rebase #

Patch Set 28 : Rebase and fix BUILD.gn #

Patch Set 29 : Rebase and fix Windows compile #

Patch Set 30 : fix typo: int32->int32_t #

Unified diffs Side-by-side diffs Delta from patch set Stats (+930 lines, -277 lines) Patch
M chrome/browser/component_updater/ppapi_utils.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +2 lines, -0 lines 0 comments Download
M content/content_renderer.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 2 chunks +4 lines, -0 lines 0 comments Download
M content/renderer/pepper/content_renderer_pepper_host_factory.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 2 chunks +12 lines, -0 lines 0 comments Download
A content/renderer/pepper/pepper_image_capture_host.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +64 lines, -0 lines 0 comments Download
A content/renderer/pepper/pepper_image_capture_host.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 1 chunk +125 lines, -0 lines 0 comments Download
A + content/renderer/pepper/pepper_platform_image_capture.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 5 chunks +14 lines, -17 lines 0 comments Download
A + content/renderer/pepper/pepper_platform_image_capture.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 5 chunks +38 lines, -69 lines 0 comments Download
M content/renderer/pepper/plugin_module.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +2 lines, -0 lines 0 comments Download
M content/renderer/pepper/resource_creation_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/pepper/resource_creation_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +5 lines, -0 lines 0 comments Download
M ppapi/api/private/ppb_camera_capabilities_private.idl View 1 2 3 4 5 6 7 8 9 10 3 chunks +1 line, -31 lines 0 comments Download
M ppapi/api/private/ppb_image_capture_private.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 4 chunks +21 lines, -19 lines 0 comments Download
M ppapi/c/private/ppb_camera_capabilities_private.h View 1 2 3 4 5 6 7 8 9 10 3 chunks +1 line, -29 lines 0 comments Download
M ppapi/c/private/ppb_image_capture_private.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 4 chunks +19 lines, -18 lines 0 comments Download
M ppapi/cpp/private/camera_capabilities_private.h View 1 2 3 4 5 6 7 8 9 10 4 chunks +2 lines, -14 lines 0 comments Download
A ppapi/cpp/private/camera_capabilities_private.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +73 lines, -0 lines 0 comments Download
M ppapi/cpp/private/image_capture_private.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 3 chunks +36 lines, -34 lines 0 comments Download
A ppapi/cpp/private/image_capture_private.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +87 lines, -0 lines 0 comments Download
M ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +16 lines, -10 lines 0 comments Download
M ppapi/ppapi_proxy.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 4 chunks +6 lines, -0 lines 0 comments Download
M ppapi/ppapi_shared.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 4 chunks +6 lines, -0 lines 0 comments Download
M ppapi/ppapi_sources.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 4 chunks +6 lines, -0 lines 0 comments Download
M ppapi/proxy/BUILD.gn 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 2 chunks +4 lines, -0 lines 0 comments Download
A ppapi/proxy/camera_capabilities_resource.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +47 lines, -0 lines 0 comments Download
A ppapi/proxy/camera_capabilities_resource.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 +36 lines, -0 lines 0 comments Download
A ppapi/proxy/image_capture_resource.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 1 chunk +66 lines, -0 lines 0 comments Download
A ppapi/proxy/image_capture_resource.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 1 chunk +119 lines, -0 lines 0 comments Download
M ppapi/proxy/interface_list.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +2 lines, -0 lines 0 comments Download
M ppapi/proxy/ppapi_messages.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +15 lines, -1 line 0 comments Download
M ppapi/proxy/resource_creation_proxy.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -0 lines 0 comments Download
M ppapi/proxy/resource_creation_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +6 lines, -0 lines 0 comments Download
M ppapi/shared_impl/resource.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +2 lines, -0 lines 0 comments Download
M ppapi/thunk/BUILD.gn 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 2 chunks +4 lines, -0 lines 0 comments Download
M ppapi/thunk/interfaces_ppb_private.h View 1 2 3 4 5 6 7 8 2 chunks +4 lines, -0 lines 0 comments Download
A ppapi/thunk/ppb_camera_capabilities_api.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 1 chunk +25 lines, -0 lines 0 comments Download
M ppapi/thunk/ppb_camera_capabilities_private_thunk.cc View 1 2 3 4 5 6 7 8 9 10 3 chunks +4 lines, -24 lines 0 comments Download
A ppapi/thunk/ppb_image_capture_api.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 1 chunk +33 lines, -0 lines 0 comments Download
M ppapi/thunk/ppb_image_capture_private_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 4 chunks +18 lines, -11 lines 0 comments Download
M ppapi/thunk/resource_creation_api.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -0 lines 0 comments Download
M tools/metrics/histograms/histograms.xml View 2 chunks +2 lines, -0 lines 0 comments Download

Messages

Total messages: 72 (18 generated)
Justin Chuang
On 2015/01/14 06:05:09, Justin Chuang wrote: > mailto:jchuang@chromium.org changed reviewers: > + mailto:wuchengli@chromium.org This CL ...
5 years, 11 months ago (2015-01-14 06:10:30 UTC) #2
wuchengli
https://codereview.chromium.org/848863002/diff/80001/chrome/browser/component_updater/ppapi_utils.cc File chrome/browser/component_updater/ppapi_utils.cc (right): https://codereview.chromium.org/848863002/diff/80001/chrome/browser/component_updater/ppapi_utils.cc#newcode1 chrome/browser/component_updater/ppapi_utils.cc:1: // Copyright (c) 2013 The Chromium Authors. All rights ...
5 years, 11 months ago (2015-01-19 14:05:04 UTC) #3
Justin Chuang
Thanks for the reviews, WuCheng Pity I can't address all review comments today. https://codereview.chromium.org/848863002/diff/80001/content/renderer/pepper/content_renderer_pepper_host_factory.cc File ...
5 years, 11 months ago (2015-01-26 15:00:51 UTC) #4
wuchengli
Hi Dave. Please take a look. Thanks.
5 years, 11 months ago (2015-01-27 03:32:25 UTC) #6
wuchengli
Next time please separate your changes and rebase to two patchsets -- your changes in ...
5 years, 11 months ago (2015-01-27 06:20:30 UTC) #7
dmichael (off chromium)
Still looking, but here are some initial comments. https://codereview.chromium.org/848863002/diff/120001/ppapi/api/private/ppb_camera_capabilities_private.idl File ppapi/api/private/ppb_camera_capabilities_private.idl (right): https://codereview.chromium.org/848863002/diff/120001/ppapi/api/private/ppb_camera_capabilities_private.idl#newcode47 ppapi/api/private/ppb_camera_capabilities_private.idl:47: [in] ...
5 years, 10 months ago (2015-01-28 00:00:36 UTC) #8
wuchengli
https://codereview.chromium.org/848863002/diff/120001/ppapi/api/private/ppb_image_capture_private.idl File ppapi/api/private/ppb_image_capture_private.idl (right): https://codereview.chromium.org/848863002/diff/120001/ppapi/api/private/ppb_image_capture_private.idl#newcode179 ppapi/api/private/ppb_image_capture_private.idl:179: [in] PP_CompletionCallback callback); On 2015/01/28 00:00:35, dmichael wrote: > ...
5 years, 10 months ago (2015-01-28 08:51:42 UTC) #9
wuchengli
Don't forget to revert all the changes not related to GetSupportedPreviewSizes. For example, ShutterCallback, uesr_data, ...
5 years, 10 months ago (2015-01-29 13:52:14 UTC) #10
dmichael (off chromium)
https://codereview.chromium.org/848863002/diff/120001/ppapi/api/private/ppb_image_capture_private.idl File ppapi/api/private/ppb_image_capture_private.idl (right): https://codereview.chromium.org/848863002/diff/120001/ppapi/api/private/ppb_image_capture_private.idl#newcode264 ppapi/api/private/ppb_image_capture_private.idl:264: [in] PPB_ImageCapture_Private_ErrorCallback error_callback, On 2015/01/28 08:51:42, wuchengli wrote: > ...
5 years, 10 months ago (2015-01-29 19:22:01 UTC) #11
Justin Chuang
Address some review comments in Patch Set 8 https://codereview.chromium.org/848863002/diff/80001/content/renderer/pepper/pepper_platform_image_capture.cc File content/renderer/pepper/pepper_platform_image_capture.cc (right): https://codereview.chromium.org/848863002/diff/80001/content/renderer/pepper/pepper_platform_image_capture.cc#newcode92 content/renderer/pepper/pepper_platform_image_capture.cc:92: NOTREACHED(); ...
5 years, 10 months ago (2015-02-02 08:43:45 UTC) #12
Justin Chuang
https://codereview.chromium.org/848863002/diff/120001/ppapi/api/private/ppb_image_capture_private.idl File ppapi/api/private/ppb_image_capture_private.idl (right): https://codereview.chromium.org/848863002/diff/120001/ppapi/api/private/ppb_image_capture_private.idl#newcode209 ppapi/api/private/ppb_image_capture_private.idl:209: [in] PP_Resource image_capture); On 2015/02/02 08:43:44, Justin Chuang wrote: ...
5 years, 10 months ago (2015-02-02 14:29:24 UTC) #14
wuchengli
Only a few comments. https://codereview.chromium.org/848863002/diff/180001/content/renderer/pepper/pepper_image_capture_host.cc File content/renderer/pepper/pepper_image_capture_host.cc (right): https://codereview.chromium.org/848863002/diff/180001/content/renderer/pepper/pepper_image_capture_host.cc#newcode88 content/renderer/pepper/pepper_image_capture_host.cc:88: platform_image_capture_.reset(new PepperPlatformImageCapture( The comment in ...
5 years, 10 months ago (2015-02-02 14:42:33 UTC) #15
wuchengli
You already addressed some of my previous review comments when I wrote them. Please ignore ...
5 years, 10 months ago (2015-02-02 14:50:08 UTC) #16
dmichael (off chromium)
I heard we might not need the full capability of this API, and that maybe ...
5 years, 10 months ago (2015-02-02 16:30:49 UTC) #17
wuchengli
On 2015/02/02 16:30:49, dmichael wrote: > I heard we might not need the full capability ...
5 years, 10 months ago (2015-02-03 02:36:35 UTC) #18
wuchengli
https://codereview.chromium.org/848863002/diff/200001/content/renderer/pepper/pepper_image_capture_host.cc File content/renderer/pepper/pepper_image_capture_host.cc (right): https://codereview.chromium.org/848863002/diff/200001/content/renderer/pepper/pepper_image_capture_host.cc#newcode88 content/renderer/pepper/pepper_image_capture_host.cc:88: platform_image_capture_.reset(new PepperPlatformImageCapture( Given we're going to remove CaptureStillImage and ...
5 years, 10 months ago (2015-02-03 02:46:30 UTC) #19
Justin Chuang
https://codereview.chromium.org/848863002/diff/180001/content/renderer/pepper/pepper_image_capture_host.cc File content/renderer/pepper/pepper_image_capture_host.cc (right): https://codereview.chromium.org/848863002/diff/180001/content/renderer/pepper/pepper_image_capture_host.cc#newcode88 content/renderer/pepper/pepper_image_capture_host.cc:88: platform_image_capture_.reset(new PepperPlatformImageCapture( On 2015/02/02 14:42:33, wuchengli wrote: > The ...
5 years, 10 months ago (2015-02-03 12:32:09 UTC) #20
Justin Chuang
On 2015/02/03 02:36:35, wuchengli wrote: > On 2015/02/02 16:30:49, dmichael wrote: > > I heard ...
5 years, 10 months ago (2015-02-03 13:15:11 UTC) #21
Justin Chuang
On 2015/02/03 13:15:11, Justin Chuang wrote: > On 2015/02/03 02:36:35, wuchengli wrote: > > On ...
5 years, 10 months ago (2015-02-03 13:57:38 UTC) #23
wuchengli
Only some small comments. https://codereview.chromium.org/848863002/diff/220001/content/renderer/pepper/pepper_image_capture_host.cc File content/renderer/pepper/pepper_image_capture_host.cc (right): https://codereview.chromium.org/848863002/diff/220001/content/renderer/pepper/pepper_image_capture_host.cc#newcode38 content/renderer/pepper/pepper_image_capture_host.cc:38: PpapiPluginMsg_ImageCapture_GetSupportedPreviewSizes, OnGetPreviewSizes) naming should be ...
5 years, 10 months ago (2015-02-03 14:34:45 UTC) #24
dmichael (off chromium)
https://codereview.chromium.org/848863002/diff/220001/content/renderer/pepper/content_renderer_pepper_host_factory.cc File content/renderer/pepper/content_renderer_pepper_host_factory.cc (right): https://codereview.chromium.org/848863002/diff/220001/content/renderer/pepper/content_renderer_pepper_host_factory.cc#newcode214 content/renderer/pepper/content_renderer_pepper_host_factory.cc:214: : scoped_ptr<ResourceHost>(); You're probably going to want this to ...
5 years, 10 months ago (2015-02-03 19:21:29 UTC) #25
dmichael (off chromium)
Sorry about that, I was confused about which API had the Capabilities part you need. ...
5 years, 10 months ago (2015-02-03 19:33:17 UTC) #26
Justin Chuang
https://codereview.chromium.org/848863002/diff/220001/content/renderer/pepper/content_renderer_pepper_host_factory.cc File content/renderer/pepper/content_renderer_pepper_host_factory.cc (right): https://codereview.chromium.org/848863002/diff/220001/content/renderer/pepper/content_renderer_pepper_host_factory.cc#newcode214 content/renderer/pepper/content_renderer_pepper_host_factory.cc:214: : scoped_ptr<ResourceHost>(); On 2015/02/03 19:21:28, dmichael wrote: > You're ...
5 years, 10 months ago (2015-02-04 16:26:01 UTC) #27
Justin Chuang
Comments in Patch Set 11 should be addressed except for the NACL part. https://codereview.chromium.org/848863002/diff/220001/content/renderer/pepper/pepper_image_capture_host.cc File ...
5 years, 10 months ago (2015-02-04 17:44:24 UTC) #28
wuchengli
LGTM. Remember to merge 884483007 and rebase this before merging. https://codereview.chromium.org/848863002/diff/220001/content/renderer/pepper/content_renderer_pepper_host_factory.cc File content/renderer/pepper/content_renderer_pepper_host_factory.cc (right): https://codereview.chromium.org/848863002/diff/220001/content/renderer/pepper/content_renderer_pepper_host_factory.cc#newcode214 ...
5 years, 10 months ago (2015-02-05 03:32:54 UTC) #29
dmichael (off chromium)
On 2015/02/04 16:26:01, Justin Chuang wrote: > https://codereview.chromium.org/848863002/diff/220001/content/renderer/pepper/content_renderer_pepper_host_factory.cc > File content/renderer/pepper/content_renderer_pepper_host_factory.cc (right): > > https://codereview.chromium.org/848863002/diff/220001/content/renderer/pepper/content_renderer_pepper_host_factory.cc#newcode214 ...
5 years, 10 months ago (2015-02-05 22:39:28 UTC) #30
Justin Chuang
On 2015/02/05 22:39:28, dmichael wrote: > On 2015/02/04 16:26:01, Justin Chuang wrote: > > I ...
5 years, 10 months ago (2015-02-06 18:56:05 UTC) #32
dmichael (off chromium)
Mostly nits, lgtm. Thanks! https://codereview.chromium.org/848863002/diff/340001/content/renderer/pepper/pepper_image_capture_host.cc File content/renderer/pepper/pepper_image_capture_host.cc (right): https://codereview.chromium.org/848863002/diff/340001/content/renderer/pepper/pepper_image_capture_host.cc#newcode1 content/renderer/pepper/pepper_image_capture_host.cc:1: // Copyright 2014 The Chromium ...
5 years, 10 months ago (2015-02-09 22:27:00 UTC) #33
Justin Chuang
Thanks for the reviews. https://codereview.chromium.org/848863002/diff/340001/content/renderer/pepper/pepper_image_capture_host.cc File content/renderer/pepper/pepper_image_capture_host.cc (right): https://codereview.chromium.org/848863002/diff/340001/content/renderer/pepper/pepper_image_capture_host.cc#newcode1 content/renderer/pepper/pepper_image_capture_host.cc:1: // Copyright 2014 The Chromium ...
5 years, 10 months ago (2015-02-10 16:01:03 UTC) #34
dmichael (off chromium)
found one more tiny nit; still lgtm https://codereview.chromium.org/848863002/diff/340001/ppapi/proxy/ppapi_messages.h File ppapi/proxy/ppapi_messages.h (right): https://codereview.chromium.org/848863002/diff/340001/ppapi/proxy/ppapi_messages.h#newcode1554 ppapi/proxy/ppapi_messages.h:1554: IPC_MESSAGE_CONTROL0(PpapiPluginMsg_ImageCapture_GetSupportedPreviewSizes) nit: ...
5 years, 10 months ago (2015-02-10 16:06:59 UTC) #36
Justin Chuang
https://codereview.chromium.org/848863002/diff/340001/ppapi/proxy/image_capture_resource.cc File ppapi/proxy/image_capture_resource.cc (right): https://codereview.chromium.org/848863002/diff/340001/ppapi/proxy/image_capture_resource.cc#newcode87 ppapi/proxy/image_capture_resource.cc:87: get_capabilities_callback_ = callback; On 2015/02/10 16:01:02, Justin Chuang wrote: ...
5 years, 10 months ago (2015-02-10 17:44:09 UTC) #37
Justin Chuang
A question: https://codereview.chromium.org/848863002/diff/380001/ppapi/proxy/image_capture_resource.cc File ppapi/proxy/image_capture_resource.cc (right): https://codereview.chromium.org/848863002/diff/380001/ppapi/proxy/image_capture_resource.cc#newcode56 ppapi/proxy/image_capture_resource.cc:56: Note that it doesn't handle a race ...
5 years, 10 months ago (2015-02-10 17:56:39 UTC) #39
dmichael (off chromium)
https://codereview.chromium.org/848863002/diff/380001/ppapi/proxy/image_capture_resource.cc File ppapi/proxy/image_capture_resource.cc (right): https://codereview.chromium.org/848863002/diff/380001/ppapi/proxy/image_capture_resource.cc#newcode56 ppapi/proxy/image_capture_resource.cc:56: On 2015/02/10 17:56:38, Justin Chuang wrote: > Note that ...
5 years, 10 months ago (2015-02-10 18:12:33 UTC) #40
Justin Chuang
https://codereview.chromium.org/848863002/diff/380001/ppapi/proxy/image_capture_resource.cc File ppapi/proxy/image_capture_resource.cc (right): https://codereview.chromium.org/848863002/diff/380001/ppapi/proxy/image_capture_resource.cc#newcode56 ppapi/proxy/image_capture_resource.cc:56: On 2015/02/10 18:12:32, dmichael wrote: > On 2015/02/10 17:56:38, ...
5 years, 10 months ago (2015-02-10 19:02:08 UTC) #41
dmichael (off chromium)
https://codereview.chromium.org/848863002/diff/380001/ppapi/proxy/image_capture_resource.cc File ppapi/proxy/image_capture_resource.cc (right): https://codereview.chromium.org/848863002/diff/380001/ppapi/proxy/image_capture_resource.cc#newcode56 ppapi/proxy/image_capture_resource.cc:56: On 2015/02/10 19:02:08, Justin Chuang wrote: > On 2015/02/10 ...
5 years, 10 months ago (2015-02-10 19:07:47 UTC) #42
Justin Chuang
On 2015/02/10 19:07:47, dmichael wrote: > https://codereview.chromium.org/848863002/diff/380001/ppapi/proxy/image_capture_resource.cc > File ppapi/proxy/image_capture_resource.cc (right): > > https://codereview.chromium.org/848863002/diff/380001/ppapi/proxy/image_capture_resource.cc#newcode56 > ...
5 years, 10 months ago (2015-02-11 03:35:29 UTC) #43
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/848863002/440001
5 years, 10 months ago (2015-02-11 03:37:37 UTC) #45
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/41925)
5 years, 10 months ago (2015-02-11 03:44:20 UTC) #47
Justin Chuang
dcheng: Please OWNERS review changes in ppapi/proxy/ppapi_messages.h. Thanks
5 years, 10 months ago (2015-02-11 07:41:05 UTC) #49
Justin Chuang
Alexei, lease OWNERS review changes in tools/metrics/histograms/histograms.xml. Thanks
5 years, 10 months ago (2015-02-11 08:24:33 UTC) #51
Alexei Svitkine (slow)
lgtm
5 years, 10 months ago (2015-02-11 15:24:01 UTC) #52
dcheng
https://codereview.chromium.org/848863002/diff/480001/content/renderer/pepper/content_renderer_pepper_host_factory.cc File content/renderer/pepper/content_renderer_pepper_host_factory.cc (right): https://codereview.chromium.org/848863002/diff/480001/content/renderer/pepper/content_renderer_pepper_host_factory.cc#newcode210 content/renderer/pepper/content_renderer_pepper_host_factory.cc:210: return host->Init() ? scoped_ptr<ResourceHost>(host.Pass()) return host->Init() ? host : ...
5 years, 10 months ago (2015-02-12 21:47:20 UTC) #53
Justin Chuang
Thanks Daniel for spending time reviewing again. https://codereview.chromium.org/848863002/diff/480001/content/renderer/pepper/content_renderer_pepper_host_factory.cc File content/renderer/pepper/content_renderer_pepper_host_factory.cc (right): https://codereview.chromium.org/848863002/diff/480001/content/renderer/pepper/content_renderer_pepper_host_factory.cc#newcode210 content/renderer/pepper/content_renderer_pepper_host_factory.cc:210: return host->Init() ...
5 years, 10 months ago (2015-02-16 19:15:24 UTC) #54
dcheng
https://codereview.chromium.org/848863002/diff/480001/content/renderer/pepper/content_renderer_pepper_host_factory.cc File content/renderer/pepper/content_renderer_pepper_host_factory.cc (right): https://codereview.chromium.org/848863002/diff/480001/content/renderer/pepper/content_renderer_pepper_host_factory.cc#newcode210 content/renderer/pepper/content_renderer_pepper_host_factory.cc:210: return host->Init() ? scoped_ptr<ResourceHost>(host.Pass()) On 2015/02/16 19:15:23, Justin Chuang ...
5 years, 10 months ago (2015-02-16 19:24:23 UTC) #56
Justin Chuang
https://codereview.chromium.org/848863002/diff/480001/content/renderer/pepper/content_renderer_pepper_host_factory.cc File content/renderer/pepper/content_renderer_pepper_host_factory.cc (right): https://codereview.chromium.org/848863002/diff/480001/content/renderer/pepper/content_renderer_pepper_host_factory.cc#newcode210 content/renderer/pepper/content_renderer_pepper_host_factory.cc:210: return host->Init() ? scoped_ptr<ResourceHost>(host.Pass()) On 2015/02/16 19:24:22, dcheng wrote: ...
5 years, 10 months ago (2015-02-16 19:54:22 UTC) #57
dcheng
ipc changes lgtm I'd prefer the issue about callback cancellation consistency to be addressed, but ...
5 years, 10 months ago (2015-02-16 20:00:14 UTC) #58
Justin Chuang
On 2015/02/16 20:00:14, dcheng wrote: > > 2.b. If this object is not deleted after ...
5 years, 10 months ago (2015-02-16 20:14:15 UTC) #59
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/848863002/560001
5 years, 10 months ago (2015-02-16 20:48:38 UTC) #62
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_gn_dbg on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_gn_dbg/builds/43213)
5 years, 10 months ago (2015-02-16 21:00:24 UTC) #64
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/848863002/580001
5 years, 10 months ago (2015-02-17 03:31:35 UTC) #66
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_x64_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_x64_rel_ng/builds/26978)
5 years, 10 months ago (2015-02-17 04:36:17 UTC) #68
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/848863002/620001
5 years, 10 months ago (2015-02-17 09:02:33 UTC) #70
commit-bot: I haz the power
Committed patchset #30 (id:620001)
5 years, 10 months ago (2015-02-17 10:11:17 UTC) #71
commit-bot: I haz the power
5 years, 10 months ago (2015-02-17 10:12:15 UTC) #72
Message was sent while issue was closed.
Patchset 30 (id:??) landed as
https://crrev.com/add2f05d32384647371c56bba67bec3fc2f1ee2f
Cr-Commit-Position: refs/heads/master@{#316552}

Powered by Google App Engine
This is Rietveld 408576698