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

Issue 421963008: Add PepperTryCatch and V8ObjectVar classes (Closed)

Created:
6 years, 4 months ago by raymes
Modified:
6 years, 4 months ago
CC:
chromium-reviews, darin-cc_chromium.org, jam, chrome-apps-syd-reviews_chromium.org
Project:
chromium
Visibility:
Public.

Description

Add PepperTryCatch and V8ObjectVar classes This adds PepperTryCatch and V8ObjectVar classes which will be used in the refactoring which replaces the NPAPI bindings with gin bindings for pepper. V8ObjectVar is a fairly straightforward replacement for NPObjectVar. PepperTryCatch (and subclasses) are used to conveniently catch and report errors eminating from either pepper or V8. It also includes facilities for conveniently converting between v8 objects and vars. It is essentially the equivalent of some of the utilities in npapi_glue.h. This also adds conversion for object vars to the V8VarConverter and some unimplemented functions to the HostVarTracker to allow these new files to compile. BUG=351636 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=288637

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Patch Set 5 : #

Total comments: 20

Patch Set 6 : #

Patch Set 7 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+391 lines, -66 lines) Patch
M content/content_renderer.gypi View 2 chunks +4 lines, -0 lines 0 comments Download
M content/renderer/pepper/host_var_tracker.h View 1 2 3 2 chunks +14 lines, -0 lines 0 comments Download
M content/renderer/pepper/pepper_plugin_instance_impl.h View 1 2 3 3 chunks +4 lines, -4 lines 0 comments Download
M content/renderer/pepper/pepper_plugin_instance_impl.cc View 1 2 3 4 5 1 chunk +12 lines, -0 lines 0 comments Download
A content/renderer/pepper/pepper_try_catch.h View 1 2 3 4 5 1 chunk +94 lines, -0 lines 0 comments Download
A content/renderer/pepper/pepper_try_catch.cc View 1 2 3 4 5 6 1 chunk +148 lines, -0 lines 0 comments Download
M content/renderer/pepper/v8_var_converter.h View 1 2 3 2 chunks +7 lines, -0 lines 0 comments Download
M content/renderer/pepper/v8_var_converter.cc View 1 2 3 14 chunks +46 lines, -7 lines 0 comments Download
A + content/renderer/pepper/v8object_var.h View 1 2 3 4 5 1 chunk +21 lines, -30 lines 0 comments Download
A + content/renderer/pepper/v8object_var.cc View 1 2 3 4 5 1 chunk +37 lines, -25 lines 0 comments Download
M ppapi/shared_impl/var.h View 1 2 3 2 chunks +2 lines, -0 lines 0 comments Download
M ppapi/shared_impl/var.cc View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 10 (0 generated)
raymes
6 years, 4 months ago (2014-07-29 05:10:39 UTC) #1
dmichael (off chromium)
https://codereview.chromium.org/421963008/diff/70001/content/renderer/pepper/pepper_plugin_instance_impl.cc File content/renderer/pepper/pepper_plugin_instance_impl.cc (right): https://codereview.chromium.org/421963008/diff/70001/content/renderer/pepper/pepper_plugin_instance_impl.cc#newcode668 content/renderer/pepper/pepper_plugin_instance_impl.cc:668: container_->element().document().frame()->mainWorldScriptContext(); The frame can be NULL in rare cases, ...
6 years, 4 months ago (2014-07-30 19:34:14 UTC) #2
raymes
Thanks for your comments! I was OOO for a couple of days so I should ...
6 years, 4 months ago (2014-08-05 06:49:35 UTC) #3
raymes
Thanks for taking a look! https://codereview.chromium.org/421963008/diff/70001/content/renderer/pepper/pepper_plugin_instance_impl.cc File content/renderer/pepper/pepper_plugin_instance_impl.cc (right): https://codereview.chromium.org/421963008/diff/70001/content/renderer/pepper/pepper_plugin_instance_impl.cc#newcode668 content/renderer/pepper/pepper_plugin_instance_impl.cc:668: container_->element().document().frame()->mainWorldScriptContext(); On 2014/07/30 19:34:13, ...
6 years, 4 months ago (2014-08-06 03:22:52 UTC) #4
raymes
https://codereview.chromium.org/421963008/diff/70001/content/renderer/pepper/pepper_try_catch.h File content/renderer/pepper/pepper_try_catch.h (right): https://codereview.chromium.org/421963008/diff/70001/content/renderer/pepper/pepper_try_catch.h#newcode58 content/renderer/pepper/pepper_try_catch.h:58: PP_Var exception_; Actually this won't work. We want to ...
6 years, 4 months ago (2014-08-06 03:29:56 UTC) #5
dmichael (off chromium)
lgtm https://codereview.chromium.org/421963008/diff/70001/content/renderer/pepper/pepper_try_catch.cc File content/renderer/pepper/pepper_try_catch.cc (right): https://codereview.chromium.org/421963008/diff/70001/content/renderer/pepper/pepper_try_catch.cc#newcode122 content/renderer/pepper/pepper_try_catch.cc:122: if (!GetContext().IsEmpty()) On 2014/08/06 03:22:52, raymes wrote: > ...
6 years, 4 months ago (2014-08-06 15:41:45 UTC) #6
raymes
The CQ bit was checked by raymes@chromium.org
6 years, 4 months ago (2014-08-11 00:26:21 UTC) #7
raymes
https://codereview.chromium.org/421963008/diff/70001/content/renderer/pepper/pepper_try_catch.cc File content/renderer/pepper/pepper_try_catch.cc (right): https://codereview.chromium.org/421963008/diff/70001/content/renderer/pepper/pepper_try_catch.cc#newcode122 content/renderer/pepper/pepper_try_catch.cc:122: if (!GetContext().IsEmpty()) Good to know, let's leave the check ...
6 years, 4 months ago (2014-08-11 00:26:33 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/raymes@chromium.org/421963008/110001
6 years, 4 months ago (2014-08-11 00:28:10 UTC) #9
commit-bot: I haz the power
6 years, 4 months ago (2014-08-11 02:59:17 UTC) #10
Message was sent while issue was closed.
Change committed as 288637

Powered by Google App Engine
This is Rietveld 408576698