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

Issue 13080002: Apps V2 in Pepper: introduce singleton resource ExtensionsCommon. (Closed)

Created:
7 years, 9 months ago by yzshen1
Modified:
7 years, 8 months ago
Reviewers:
jschuh, brettw, raymes, yzshen
CC:
chromium-reviews
Visibility:
Public.

Description

Apps V2 in Pepper: introduce singleton resource ExtensionsCommon. ExtensionsCommon will be the plugin-renderer bridge for those 'simple' APIs whose input/output can be easily represented by base::ListValue. The host side implementation will be in a separate CL. BUG=None TEST=None Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=191278

Patch Set 1 #

Total comments: 2

Patch Set 2 : . #

Unified diffs Side-by-side diffs Delta from patch set Stats (+696 lines, -657 lines) Patch
M chrome/chrome_renderer.gypi View 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/renderer/pepper/chrome_renderer_pepper_host_factory.cc View 2 chunks +12 lines, -0 lines 0 comments Download
A chrome/renderer/pepper/pepper_extensions_common_host.h View 1 1 chunk +71 lines, -0 lines 0 comments Download
A chrome/renderer/pepper/pepper_extensions_common_host.cc View 1 chunk +65 lines, -0 lines 0 comments Download
D ppapi/api/extensions/dev/ppb_alarms_dev.idl View 1 chunk +0 lines, -178 lines 0 comments Download
D ppapi/api/extensions/dev/ppb_events_dev.idl View 1 chunk +0 lines, -87 lines 0 comments Download
A + ppapi/api/extensions/dev/ppb_ext_alarms_dev.idl View 1 chunk +1 line, -1 line 0 comments Download
A + ppapi/api/extensions/dev/ppb_ext_events_dev.idl View 0 chunks +-1 lines, --1 lines 0 comments Download
D ppapi/c/extensions/dev/ppb_alarms_dev.h View 1 chunk +0 lines, -202 lines 0 comments Download
D ppapi/c/extensions/dev/ppb_events_dev.h View 1 chunk +0 lines, -118 lines 0 comments Download
A + ppapi/c/extensions/dev/ppb_ext_alarms_dev.h View 3 chunks +7 lines, -5 lines 0 comments Download
A + ppapi/c/extensions/dev/ppb_ext_events_dev.h View 2 chunks +6 lines, -4 lines 0 comments Download
M ppapi/cpp/extensions/dev/alarms_dev.h View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/cpp/extensions/dev/events_dev.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/cpp/extensions/event_base.h View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c View 1 chunk +2 lines, -2 lines 0 comments Download
M ppapi/ppapi_proxy.gypi View 1 chunk +2 lines, -0 lines 0 comments Download
M ppapi/ppapi_shared.gypi View 2 chunks +2 lines, -0 lines 0 comments Download
M ppapi/ppapi_sources.gypi View 1 chunk +2 lines, -2 lines 0 comments Download
A ppapi/proxy/extensions_common_resource.h View 1 chunk +52 lines, -0 lines 0 comments Download
A ppapi/proxy/extensions_common_resource.cc View 1 chunk +105 lines, -0 lines 0 comments Download
M ppapi/proxy/interface_list.cc View 1 chunk +1 line, -0 lines 0 comments Download
M ppapi/proxy/ppapi_messages.h View 1 2 chunks +20 lines, -0 lines 0 comments Download
M ppapi/proxy/ppb_instance_proxy.cc View 2 chunks +4 lines, -0 lines 0 comments Download
M ppapi/shared_impl/resource.h View 1 chunk +1 line, -0 lines 0 comments Download
M ppapi/shared_impl/singleton_resource_id.h View 1 chunk +1 line, -0 lines 0 comments Download
M ppapi/shared_impl/var_value_conversions.h View 3 chunks +24 lines, -5 lines 0 comments Download
M ppapi/shared_impl/var_value_conversions.cc View 2 chunks +49 lines, -2 lines 0 comments Download
M ppapi/shared_impl/var_value_conversions_unittest.cc View 11 chunks +126 lines, -47 lines 0 comments Download
M ppapi/tests/all_c_includes.h View 1 chunk +2 lines, -2 lines 0 comments Download
A ppapi/thunk/extensions_common_api.h View 1 chunk +38 lines, -0 lines 0 comments Download
M ppapi/thunk/interfaces_ppb_public_dev.h View 1 chunk +2 lines, -0 lines 0 comments Download
A ppapi/thunk/ppb_ext_alarms_thunk.cc View 1 chunk +95 lines, -0 lines 0 comments Download
M webkit/plugins/ppapi/plugin_module.cc View 1 chunk +1 line, -0 lines 0 comments Download
M webkit/plugins/ppapi/ppapi_plugin_instance.cc View 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 9 (0 generated)
yzshen1
Hi, Raymes. Would you please take a look? Thanks!
7 years, 9 months ago (2013-03-26 00:51:03 UTC) #1
raymes
This is quite nice. lgtm after addressing the one comment. https://codereview.chromium.org/13080002/diff/1/ppapi/proxy/ppapi_messages.h File ppapi/proxy/ppapi_messages.h (right): https://codereview.chromium.org/13080002/diff/1/ppapi/proxy/ppapi_messages.h#newcode1338 ...
7 years, 9 months ago (2013-03-27 16:52:08 UTC) #2
yzshen1
Thanks Raymes! Brett: please do an OWNER review for chrome_renderer.gypi. Justin: please do a review ...
7 years, 9 months ago (2013-03-27 22:31:40 UTC) #3
brettw
.gypi lgtm
7 years, 9 months ago (2013-03-28 04:14:13 UTC) #4
jschuh
Just to clarify, this appears to be just proxying to the normal interface JavaScript extensions ...
7 years, 9 months ago (2013-03-28 11:28:14 UTC) #5
yzshen
Thanks Brett and Justin! Correct. In renderer, the requests will be relayed to the RequestSender ...
7 years, 9 months ago (2013-03-28 18:20:10 UTC) #6
jschuh
okay. rubberstamp ipc lgtm for ipc security since the immediate use of the fields doesn't ...
7 years, 9 months ago (2013-03-28 18:27:57 UTC) #7
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/yzshen@chromium.org/13080002/8001
7 years, 9 months ago (2013-03-28 20:38:26 UTC) #8
commit-bot: I haz the power
7 years, 8 months ago (2013-03-29 03:29:23 UTC) #9
Message was sent while issue was closed.
Change committed as 191278

Powered by Google App Engine
This is Rietveld 408576698