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

Issue 6903084: Add UMA private PPAPI interface for UMA logging from NaCl plugin (Closed)

Created:
9 years, 8 months ago by elijahtaylor (use chromium)
Modified:
9 years, 7 months ago
CC:
chromium-reviews, piman+watch_chromium.org, darin-cc_chromium.org
Visibility:
Public.

Description

Add UMA private PPAPI interface for UMA logging from NaCl plugin BUG= none TEST= manual test of ppapi_tests, run UMA tests Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=83622

Patch Set 1 #

Patch Set 2 : '' #

Patch Set 3 : '' #

Total comments: 2

Patch Set 4 : formatting #

Total comments: 6

Patch Set 5 : addressing brett's feedback #

Total comments: 2

Patch Set 6 : add NULL checks for strings #

Patch Set 7 : merge with HEAD #

Unified diffs Side-by-side diffs Delta from patch set Stats (+260 lines, -0 lines) Patch
A ppapi/c/private/ppb_uma_private.h View 1 2 3 4 1 chunk +45 lines, -0 lines 0 comments Download
M ppapi/ppapi_tests.gypi View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download
M ppapi/tests/all_c_includes.h View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
A ppapi/tests/test_uma.h View 1 1 chunk +31 lines, -0 lines 0 comments Download
A ppapi/tests/test_uma.cc View 1 chunk +56 lines, -0 lines 0 comments Download
M webkit/glue/webkit_glue.gypi View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download
M webkit/plugins/ppapi/plugin_module.cc View 1 2 3 4 5 6 3 chunks +4 lines, -0 lines 0 comments Download
A webkit/plugins/ppapi/ppb_uma_private_impl.h View 1 chunk +21 lines, -0 lines 0 comments Download
A webkit/plugins/ppapi/ppb_uma_private_impl.cc View 1 2 3 4 5 1 chunk +98 lines, -0 lines 0 comments Download

Messages

Total messages: 13 (0 generated)
elijahtaylor (use chromium)
Sorry if I've cast too wide a net with ppapi reviewers, let me know if ...
9 years, 8 months ago (2011-04-27 22:15:05 UTC) #1
bbudge-google
LGTM with a formatting nit, but you should add the owner, jam@chromium.org to reviewers. http://codereview.chromium.org/6903084/diff/4004/webkit/plugins/ppapi/ppb_uma_private_impl.cc ...
9 years, 8 months ago (2011-04-27 23:03:54 UTC) #2
bbudge-google
Since this is generally useful, perhaps it should be a trusted interface. Private interfaces seem ...
9 years, 8 months ago (2011-04-28 12:48:16 UTC) #3
elijahtaylor (use chromium)
+jam So I guess I don't know the difference between trusted/private. Is this just a ...
9 years, 8 months ago (2011-04-28 18:13:13 UTC) #4
jam
brettw can comment on this better. the lines between private/trusted are a little fuzzy. On ...
9 years, 8 months ago (2011-04-28 18:20:02 UTC) #5
elijahtaylor (use chromium)
http://codereview.chromium.org/6903084/diff/4004/webkit/plugins/ppapi/ppb_uma_private_impl.cc File webkit/plugins/ppapi/ppb_uma_private_impl.cc (right): http://codereview.chromium.org/6903084/diff/4004/webkit/plugins/ppapi/ppb_uma_private_impl.cc#newcode19 webkit/plugins/ppapi/ppb_uma_private_impl.cc:19: int64_t min, int64_t max, uint32_t bucket_count) { On 2011/04/27 ...
9 years, 8 months ago (2011-04-28 19:14:46 UTC) #6
brettw
On Thu, Apr 28, 2011 at 11:20 AM, <jam@chromium.org> wrote: > brettw can comment on ...
9 years, 8 months ago (2011-04-28 20:15:23 UTC) #7
elijahtaylor (use chromium)
*ping* Can someone look at this today possibly? In particular I'm looking for an LGTM ...
9 years, 7 months ago (2011-04-29 19:05:58 UTC) #8
brettw
http://codereview.chromium.org/6903084/diff/2011/ppapi/c/private/ppb_uma_private.h File ppapi/c/private/ppb_uma_private.h (right): http://codereview.chromium.org/6903084/diff/2011/ppapi/c/private/ppb_uma_private.h#newcode8 ppapi/c/private/ppb_uma_private.h:8: #include "ppapi/c/pp_stdint.h" This should include pp_var.h also since you ...
9 years, 7 months ago (2011-04-29 21:05:04 UTC) #9
elijahtaylor (use chromium)
Thanks for the feedback, PTAL http://codereview.chromium.org/6903084/diff/2011/ppapi/c/private/ppb_uma_private.h File ppapi/c/private/ppb_uma_private.h (right): http://codereview.chromium.org/6903084/diff/2011/ppapi/c/private/ppb_uma_private.h#newcode8 ppapi/c/private/ppb_uma_private.h:8: #include "ppapi/c/pp_stdint.h" On 2011/04/29 ...
9 years, 7 months ago (2011-04-29 21:52:07 UTC) #10
brettw
http://codereview.chromium.org/6903084/diff/4018/webkit/plugins/ppapi/ppb_uma_private_impl.cc File webkit/plugins/ppapi/ppb_uma_private_impl.cc (right): http://codereview.chromium.org/6903084/diff/4018/webkit/plugins/ppapi/ppb_uma_private_impl.cc#newcode67 webkit/plugins/ppapi/ppb_uma_private_impl.cc:67: scoped_refptr<StringVar> name_string(StringVar::FromPPVar(name)); You still need to check this pointer ...
9 years, 7 months ago (2011-04-29 22:11:06 UTC) #11
elijahtaylor (use chromium)
http://codereview.chromium.org/6903084/diff/4018/webkit/plugins/ppapi/ppb_uma_private_impl.cc File webkit/plugins/ppapi/ppb_uma_private_impl.cc (right): http://codereview.chromium.org/6903084/diff/4018/webkit/plugins/ppapi/ppb_uma_private_impl.cc#newcode67 webkit/plugins/ppapi/ppb_uma_private_impl.cc:67: scoped_refptr<StringVar> name_string(StringVar::FromPPVar(name)); On 2011/04/29 22:11:06, brettw wrote: > You ...
9 years, 7 months ago (2011-04-29 22:27:03 UTC) #12
brettw
9 years, 7 months ago (2011-04-29 22:53:37 UTC) #13
LGTM

Powered by Google App Engine
This is Rietveld 408576698