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

Issue 1037483003: [PresentationAPI] Implementing send() from WebPresentationClient to the PresentationService. (Closed)

Created:
5 years, 9 months ago by USE s.singapati at gmail.com
Modified:
5 years, 7 months ago
CC:
Aaron Boodman, abarth-chromium, ben+mojo_chromium.org, chromium-reviews, darin (slow to review), darin-cc_chromium.org, haibinlu, jam, mkwst+moarreviews-renderer_chromium.org, mlamouri+watch-content_chromium.org, qsr+mojo_chromium.org, viettrungluu+watch_chromium.org, yzshen+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

[PresentationAPI] Implements send() API for String and ArrayBuffer/View from WebPresentationClient to the PresentationServiceDelegate. Send requests are queued in PresentationDispatcher and handled one at a time. Depends on the Blink CL: https://codereview.chromium.org/1002293005 BUG=459008 Committed: https://crrev.com/834d10a11de9909062d6817583f1a769d6465a3c Cr-Commit-Position: refs/heads/master@{#329154}

Patch Set 1 #

Total comments: 1

Patch Set 2 : Added queuing mechanism for postMessage requests. (WIP) #

Total comments: 19

Patch Set 3 : send msg callback from mojo, invalidating pending requests, other review fixes. #

Patch Set 4 : Use simple queue<> instead of hash_map of vectors & send one message at a time. #

Patch Set 5 : Rebased. #

Total comments: 17

Patch Set 6 : callback handling for send requests, other fixes. #

Total comments: 12

Patch Set 7 : Extended SendStringMessage() to delegate, Added unit test & other fixes. #

Total comments: 7

Patch Set 8 : Updated callback handling, message invalidation and and sending generic message struct. #

Total comments: 8

Patch Set 9 : message throttling and invalidation changes and renamed struct. #

Patch Set 10 : Rebase and minor fixing. #

Patch Set 11 : Extended unit tests and nullable fields in mojo SessionMessage struct. #

Patch Set 12 : moved presentation_message.h/.cc to content/public/browser/ #

Total comments: 40

Patch Set 13 : Review fixes. #

Patch Set 14 : passing scoped_ptr to delegate, updated UT. #

Patch Set 15 : Rebase #

Patch Set 16 : merge. #

Total comments: 20

Patch Set 17 : presentation_constants.h/cc and other fixes. #

Patch Set 18 : Use Swap to avoid copying data. #

Patch Set 19 : #

Patch Set 20 : Fixed trybots errors. #

Total comments: 10

Patch Set 21 : Fix nits, trybots errors. #

Total comments: 4

Patch Set 22 : No (c) in new files Copyright message. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+433 lines, -15 lines) Patch
M content/browser/presentation/presentation_service_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 5 chunks +9 lines, -1 line 0 comments Download
M content/browser/presentation/presentation_service_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 4 chunks +75 lines, -1 line 0 comments Download
M content/browser/presentation/presentation_service_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 4 chunks +156 lines, -0 lines 0 comments Download
M content/common/presentation/presentation_service.mojom View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +14 lines, -7 lines 0 comments Download
M content/content_common.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +2 lines, -0 lines 0 comments Download
M content/public/browser/presentation_service_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +12 lines, -0 lines 0 comments Download
A content/public/common/presentation_constants.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +19 lines, -0 lines 0 comments Download
A + content/public/common/presentation_constants.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +3 lines, -5 lines 0 comments Download
M content/renderer/presentation/presentation_dispatcher.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 3 chunks +23 lines, -1 line 0 comments Download
M content/renderer/presentation/presentation_dispatcher.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +120 lines, -0 lines 0 comments Download

Messages

Total messages: 90 (24 generated)
USE s.singapati at gmail.com
PTaL.
5 years, 9 months ago (2015-03-25 11:37:18 UTC) #2
whywhat
https://codereview.chromium.org/1037483003/diff/1/content/common/presentation/presentation_service.mojom File content/common/presentation/presentation_service.mojom (right): https://codereview.chromium.org/1037483003/diff/1/content/common/presentation/presentation_service.mojom#newcode74 content/common/presentation/presentation_service.mojom:74: PostMessage(string presentation_url, string presentation_id, string message); nit: fit into ...
5 years, 9 months ago (2015-03-26 00:24:14 UTC) #3
USE s.singapati at gmail.com
On 2015/03/26 00:24:14, whywhat wrote: > https://codereview.chromium.org/1037483003/diff/1/content/common/presentation/presentation_service.mojom > File content/common/presentation/presentation_service.mojom (right): > > https://codereview.chromium.org/1037483003/diff/1/content/common/presentation/presentation_service.mojom#newcode74 > ...
5 years, 9 months ago (2015-03-26 21:52:01 UTC) #4
whywhat
On 2015/03/26 21:52:01, s.singapati wrote: > On 2015/03/26 00:24:14, whywhat wrote: > > > https://codereview.chromium.org/1037483003/diff/1/content/common/presentation/presentation_service.mojom ...
5 years, 8 months ago (2015-04-02 10:34:03 UTC) #5
USE s.singapati at gmail.com
On 2015/04/02 10:34:03, whywhat wrote: > On 2015/03/26 21:52:01, s.singapati wrote: > > On 2015/03/26 ...
5 years, 8 months ago (2015-04-02 15:26:30 UTC) #6
mark a. foltz
https://codereview.chromium.org/1037483003/diff/20001/content/browser/presentation/presentation_service_impl.h File content/browser/presentation/presentation_service_impl.h (right): https://codereview.chromium.org/1037483003/diff/20001/content/browser/presentation/presentation_service_impl.h#newcode166 content/browser/presentation/presentation_service_impl.h:166: void PostMessages( For all types that can be sent/received, ...
5 years, 8 months ago (2015-04-02 20:46:26 UTC) #7
mark a. foltz
5 years, 8 months ago (2015-04-02 20:46:44 UTC) #9
imcheng
https://codereview.chromium.org/1037483003/diff/20001/content/browser/presentation/presentation_service_impl.h File content/browser/presentation/presentation_service_impl.h (right): https://codereview.chromium.org/1037483003/diff/20001/content/browser/presentation/presentation_service_impl.h#newcode166 content/browser/presentation/presentation_service_impl.h:166: void PostMessages( On 2015/04/02 20:46:26, mark a. foltz wrote: ...
5 years, 8 months ago (2015-04-02 23:57:24 UTC) #10
USE s.singapati at gmail.com
https://codereview.chromium.org/1037483003/diff/20001/content/browser/presentation/presentation_service_impl.h File content/browser/presentation/presentation_service_impl.h (right): https://codereview.chromium.org/1037483003/diff/20001/content/browser/presentation/presentation_service_impl.h#newcode166 content/browser/presentation/presentation_service_impl.h:166: void PostMessages( On 2015/04/02 20:46:26, mark a. foltz wrote: ...
5 years, 8 months ago (2015-04-07 17:45:16 UTC) #11
USE s.singapati at gmail.com
Please ignore other CL (https://codereview.chromium.org/1061363002/). I have merged the changes into current CL. Patchset#3: Uses ...
5 years, 8 months ago (2015-04-08 09:42:41 UTC) #12
mark a. foltz
This looks pretty good, although I would like to see unit tests for the new ...
5 years, 8 months ago (2015-04-08 23:43:45 UTC) #13
imcheng
https://codereview.chromium.org/1037483003/diff/80001/content/renderer/presentation/presentation_dispatcher.cc File content/renderer/presentation/presentation_dispatcher.cc (right): https://codereview.chromium.org/1037483003/diff/80001/content/renderer/presentation/presentation_dispatcher.cc#newcode174 content/renderer/presentation/presentation_dispatcher.cc:174: DCHECK(!message_request_queue_.empty()); Is the following scenario possible? 1. presentation_service_->SendStringMessage is ...
5 years, 8 months ago (2015-04-09 00:29:57 UTC) #14
USE s.singapati at gmail.com
I will work on adding unit tests for PresentationDispatcher. https://codereview.chromium.org/1037483003/diff/80001/content/common/presentation/presentation_service.mojom File content/common/presentation/presentation_service.mojom (right): https://codereview.chromium.org/1037483003/diff/80001/content/common/presentation/presentation_service.mojom#newcode77 content/common/presentation/presentation_service.mojom:77: ...
5 years, 8 months ago (2015-04-10 16:26:06 UTC) #15
mark a. foltz
Please add a test case for SendStringMessage in presentation_service_impl_unittest.cc. I also recommend unit testing the ...
5 years, 8 months ago (2015-04-10 19:03:18 UTC) #16
whywhat
We did consider having the following signature for the Mojo service method: SendStringMessage(String url, String ...
5 years, 8 months ago (2015-04-13 13:31:21 UTC) #17
USE s.singapati at gmail.com
Need to add unit tests for queuing behavior in PresentationDispatcher. But before that need to ...
5 years, 8 months ago (2015-04-14 17:51:51 UTC) #18
USE s.singapati at gmail.com
On 2015/04/13 13:31:21, whywhat wrote: > We did consider having the following signature for the ...
5 years, 8 months ago (2015-04-14 19:49:49 UTC) #19
imcheng
https://codereview.chromium.org/1037483003/diff/120001/content/browser/presentation/presentation_service_impl.cc File content/browser/presentation/presentation_service_impl.cc (right): https://codereview.chromium.org/1037483003/diff/120001/content/browser/presentation/presentation_service_impl.cc#newcode313 content/browser/presentation/presentation_service_impl.cc:313: send_message_cb_ptr_.reset(new SendMessageMojoCallback(callback)); Given that incoming SendStringMessage requests are already ...
5 years, 8 months ago (2015-04-14 21:29:13 UTC) #20
USE s.singapati at gmail.com
https://codereview.chromium.org/1037483003/diff/120001/content/browser/presentation/presentation_service_impl.cc File content/browser/presentation/presentation_service_impl.cc (right): https://codereview.chromium.org/1037483003/diff/120001/content/browser/presentation/presentation_service_impl.cc#newcode313 content/browser/presentation/presentation_service_impl.cc:313: send_message_cb_ptr_.reset(new SendMessageMojoCallback(callback)); On 2015/04/14 21:29:13, imcheng1 wrote: > Given ...
5 years, 8 months ago (2015-04-15 16:09:08 UTC) #21
USE s.singapati at gmail.com
https://codereview.chromium.org/1037483003/diff/120001/content/browser/presentation/presentation_service_impl.cc File content/browser/presentation/presentation_service_impl.cc (right): https://codereview.chromium.org/1037483003/diff/120001/content/browser/presentation/presentation_service_impl.cc#newcode313 content/browser/presentation/presentation_service_impl.cc:313: send_message_cb_ptr_.reset(new SendMessageMojoCallback(callback)); On 2015/04/15 16:09:08, s.singapati wrote: > On ...
5 years, 8 months ago (2015-04-16 11:14:15 UTC) #22
mlamouri (slow - plz ping)
It seems to me that the throttling on the renderer isn't needed and highly increase ...
5 years, 8 months ago (2015-04-16 13:18:01 UTC) #24
USE s.singapati at gmail.com
Latest patch set tries to address some previous review comments and discussion in mojo-dev channel. ...
5 years, 8 months ago (2015-04-21 19:31:33 UTC) #25
mark a. foltz
On 2015/04/21 19:31:33, s.singapati wrote: > Latest patch set tries to address some previous review ...
5 years, 8 months ago (2015-04-22 18:00:44 UTC) #26
USE s.singapati at gmail.com
On 2015/04/22 18:00:44, mark a. foltz wrote: > On 2015/04/21 19:31:33, s.singapati wrote: > > ...
5 years, 8 months ago (2015-04-22 19:00:51 UTC) #27
mark a. foltz
I see, Derek/Mounir, do you see any problems with that approach? I had one unsent ...
5 years, 8 months ago (2015-04-22 19:34:23 UTC) #28
imcheng
That approach SGTM. I have a couple other comments concerning the TODOs. > - Invalidating ...
5 years, 8 months ago (2015-04-22 20:11:53 UTC) #29
imcheng
https://codereview.chromium.org/1037483003/diff/140001/content/common/presentation/presentation_message.h File content/common/presentation/presentation_message.h (right): https://codereview.chromium.org/1037483003/diff/140001/content/common/presentation/presentation_message.h#newcode5 content/common/presentation/presentation_message.h:5: #ifndef CONTENT_COMMON_PRESENTATION_PRESENTATION_MESSAGE_H_ This file and the .cc file should ...
5 years, 8 months ago (2015-04-22 20:12:02 UTC) #30
USE s.singapati at gmail.com
https://codereview.chromium.org/1037483003/diff/140001/content/common/presentation/presentation_message.h File content/common/presentation/presentation_message.h (right): https://codereview.chromium.org/1037483003/diff/140001/content/common/presentation/presentation_message.h#newcode5 content/common/presentation/presentation_message.h:5: #ifndef CONTENT_COMMON_PRESENTATION_PRESENTATION_MESSAGE_H_ On 2015/04/22 20:12:02, imcheng1 wrote: > This ...
5 years, 8 months ago (2015-04-23 12:39:23 UTC) #31
imcheng (use chromium acct)
On 2015/04/23 12:39:23, s.singapati wrote: > https://codereview.chromium.org/1037483003/diff/140001/content/common/presentation/presentation_message.h > File content/common/presentation/presentation_message.h (right): > > https://codereview.chromium.org/1037483003/diff/140001/content/common/presentation/presentation_message.h#newcode5 > ...
5 years, 8 months ago (2015-04-23 17:19:32 UTC) #32
USE s.singapati at gmail.com
> Would it be possible to only depend on presentation::MessageRequest in > PresentationDispatcher? It looks ...
5 years, 8 months ago (2015-04-24 20:42:56 UTC) #33
haibinlu
https://codereview.chromium.org/1037483003/diff/140001/content/common/presentation/presentation_service.mojom File content/common/presentation/presentation_service.mojom (right): https://codereview.chromium.org/1037483003/diff/140001/content/common/presentation/presentation_service.mojom#newcode34 content/common/presentation/presentation_service.mojom:34: struct MessageRequest { can this be renamed to SessionMessage ...
5 years, 8 months ago (2015-04-24 22:13:25 UTC) #35
USE s.singapati at gmail.com
Still updating the patch. Need cleanup and renaming the MessageRequest struct better. Had some problems ...
5 years, 7 months ago (2015-04-27 19:28:57 UTC) #36
mark a. foltz
Is there anything we can do to move this patch forward?
5 years, 7 months ago (2015-04-30 00:14:45 UTC) #40
USE s.singapati at gmail.com
On 2015/04/30 00:14:45, mark a. foltz wrote: > Is there anything we can do to ...
5 years, 7 months ago (2015-04-30 05:29:31 UTC) #41
whywhat
lgtm with nits https://codereview.chromium.org/1037483003/diff/280001/content/browser/presentation/presentation_service_impl.cc File content/browser/presentation/presentation_service_impl.cc (right): https://codereview.chromium.org/1037483003/diff/280001/content/browser/presentation/presentation_service_impl.cc#newcode322 content/browser/presentation/presentation_service_impl.cc:322: callback.Run(true); nit: did you want to ...
5 years, 7 months ago (2015-04-30 15:50:58 UTC) #42
imcheng (use chromium acct)
Looking much better. Thank you for your patience. https://codereview.chromium.org/1037483003/diff/280001/content/browser/presentation/presentation_service_impl.cc File content/browser/presentation/presentation_service_impl.cc (right): https://codereview.chromium.org/1037483003/diff/280001/content/browser/presentation/presentation_service_impl.cc#newcode327 content/browser/presentation/presentation_service_impl.cc:327: DCHECK(!send_message_cb_ptr_); ...
5 years, 7 months ago (2015-04-30 20:11:30 UTC) #44
USE s.singapati at gmail.com
Thanks for review. I will update the patch on Monday. Today is holiday here. https://codereview.chromium.org/1037483003/diff/280001/content/browser/presentation/presentation_service_impl.cc ...
5 years, 7 months ago (2015-05-01 10:30:25 UTC) #45
whywhat
https://codereview.chromium.org/1037483003/diff/280001/content/renderer/presentation/presentation_dispatcher.cc File content/renderer/presentation/presentation_dispatcher.cc (right): https://codereview.chromium.org/1037483003/diff/280001/content/renderer/presentation/presentation_dispatcher.cc#newcode139 content/renderer/presentation/presentation_dispatcher.cc:139: presentation::SessionMessage* session_message = On 2015/05/01 10:30:25, s.singapati wrote: > ...
5 years, 7 months ago (2015-05-01 14:09:08 UTC) #46
USE s.singapati at gmail.com
Working on sending scoped_ptr<PresentationMessageRequest> to delegate & unit test. https://codereview.chromium.org/1037483003/diff/280001/content/browser/presentation/presentation_service_impl.cc File content/browser/presentation/presentation_service_impl.cc (right): https://codereview.chromium.org/1037483003/diff/280001/content/browser/presentation/presentation_service_impl.cc#newcode322 content/browser/presentation/presentation_service_impl.cc:322: ...
5 years, 7 months ago (2015-05-04 16:40:29 UTC) #47
USE s.singapati at gmail.com
PTaL. https://codereview.chromium.org/1037483003/diff/280001/content/browser/presentation/presentation_service_impl.cc File content/browser/presentation/presentation_service_impl.cc (right): https://codereview.chromium.org/1037483003/diff/280001/content/browser/presentation/presentation_service_impl.cc#newcode336 content/browser/presentation/presentation_service_impl.cc:336: static_cast<PresentationMessageType>(message_request->type), On 2015/04/30 20:11:29, imcheng wrote: > To ...
5 years, 7 months ago (2015-05-05 14:26:36 UTC) #48
imcheng (use chromium acct)
lgtm, but you will need to merge with https://codereview.chromium.org/1118103002/. Please see if you could use ...
5 years, 7 months ago (2015-05-05 23:28:50 UTC) #49
mark a. foltz
lgtm modulo remaining comments, +1 to imcheng@'s swap() comment. https://codereview.chromium.org/1037483003/diff/360001/content/browser/presentation/presentation_service_impl.cc File content/browser/presentation/presentation_service_impl.cc (right): https://codereview.chromium.org/1037483003/diff/360001/content/browser/presentation/presentation_service_impl.cc#newcode51 content/browser/presentation/presentation_service_impl.cc:51: ...
5 years, 7 months ago (2015-05-07 01:34:31 UTC) #50
haibinlu
5 years, 7 months ago (2015-05-07 02:00:14 UTC) #51
haibinlu
5 years, 7 months ago (2015-05-07 02:00:46 UTC) #52
haibinlu
lgtm https://codereview.chromium.org/1037483003/diff/360001/content/browser/presentation/presentation_service_impl.h File content/browser/presentation/presentation_service_impl.h (right): https://codereview.chromium.org/1037483003/diff/360001/content/browser/presentation/presentation_service_impl.h#newcode346 content/browser/presentation/presentation_service_impl.h:346: scoped_ptr<SendMessageMojoCallback> send_message_cb_ptr_; send_message_callback_ to be consistent?
5 years, 7 months ago (2015-05-07 02:28:20 UTC) #53
USE s.singapati at gmail.com
PTAL. One question. How do we differentiate ArrayBuffer & Blob in content::PresentationSessionMessage? https://codereview.chromium.org/1037483003/diff/360001/content/browser/presentation/presentation_service_impl.cc File content/browser/presentation/presentation_service_impl.cc ...
5 years, 7 months ago (2015-05-07 14:08:52 UTC) #54
whywhat
Re: your question - we don't yet. https://codereview.chromium.org/1037483003/diff/360001/content/browser/presentation/presentation_service_impl.cc File content/browser/presentation/presentation_service_impl.cc (right): https://codereview.chromium.org/1037483003/diff/360001/content/browser/presentation/presentation_service_impl.cc#newcode57 content/browser/presentation/presentation_service_impl.cc:57: scoped_ptr<std::string>(new std::string(input->message))); ...
5 years, 7 months ago (2015-05-07 14:22:01 UTC) #55
USE s.singapati at gmail.com
PTAL. Addressed all comments. I'm sorry for delays but I will do better. Thanks. > ...
5 years, 7 months ago (2015-05-08 09:26:36 UTC) #56
mark a. foltz
lgtm
5 years, 7 months ago (2015-05-08 21:00:25 UTC) #57
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037483003/400001
5 years, 7 months ago (2015-05-09 06:59:14 UTC) #60
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_compile_dbg_32_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_compile_dbg_32_ng/builds/51244)
5 years, 7 months ago (2015-05-09 07:41:13 UTC) #62
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037483003/420001
5 years, 7 months ago (2015-05-11 09:18:25 UTC) #65
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/62562)
5 years, 7 months ago (2015-05-11 09:27:53 UTC) #67
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037483003/440001
5 years, 7 months ago (2015-05-11 12:15:09 UTC) #71
USE s.singapati at gmail.com
5 years, 7 months ago (2015-05-11 12:15:43 UTC) #73
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/62575)
5 years, 7 months ago (2015-05-11 12:21:21 UTC) #75
whywhat
Just adding an OWNER to the review list won't let the CQ pass. Let's wait ...
5 years, 7 months ago (2015-05-11 12:25:33 UTC) #76
USE s.singapati at gmail.com
Hi Avi, Could you please take a look? Thanks.
5 years, 7 months ago (2015-05-11 13:59:26 UTC) #77
Avi (use Gerrit)
lgtm Fix the style nits, typos, etc. https://codereview.chromium.org/1037483003/diff/440001/content/browser/presentation/presentation_service_impl.cc File content/browser/presentation/presentation_service_impl.cc (right): https://codereview.chromium.org/1037483003/diff/440001/content/browser/presentation/presentation_service_impl.cc#newcode51 content/browser/presentation/presentation_service_impl.cc:51: // Return ...
5 years, 7 months ago (2015-05-11 14:34:41 UTC) #78
USE s.singapati at gmail.com
https://codereview.chromium.org/1037483003/diff/440001/content/browser/presentation/presentation_service_impl.cc File content/browser/presentation/presentation_service_impl.cc (right): https://codereview.chromium.org/1037483003/diff/440001/content/browser/presentation/presentation_service_impl.cc#newcode51 content/browser/presentation/presentation_service_impl.cc:51: // Return null PresentationSessionMessage if size excceded. On 2015/05/11 ...
5 years, 7 months ago (2015-05-11 15:15:05 UTC) #79
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037483003/460001
5 years, 7 months ago (2015-05-11 15:15:43 UTC) #82
nasko
Drive-by comments on newly added files. https://codereview.chromium.org/1037483003/diff/460001/content/public/common/presentation_constants.cc File content/public/common/presentation_constants.cc (right): https://codereview.chromium.org/1037483003/diff/460001/content/public/common/presentation_constants.cc#newcode1 content/public/common/presentation_constants.cc:1: // Copyright (c) ...
5 years, 7 months ago (2015-05-11 15:18:55 UTC) #83
USE s.singapati at gmail.com
https://codereview.chromium.org/1037483003/diff/460001/content/public/common/presentation_constants.cc File content/public/common/presentation_constants.cc (right): https://codereview.chromium.org/1037483003/diff/460001/content/public/common/presentation_constants.cc#newcode1 content/public/common/presentation_constants.cc:1: // Copyright (c) 2015 The Chromium Authors. All rights ...
5 years, 7 months ago (2015-05-11 15:28:17 UTC) #85
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037483003/480001
5 years, 7 months ago (2015-05-11 15:29:45 UTC) #88
commit-bot: I haz the power
Committed patchset #22 (id:480001)
5 years, 7 months ago (2015-05-11 16:29:59 UTC) #89
commit-bot: I haz the power
5 years, 7 months ago (2015-05-11 16:30:47 UTC) #90
Message was sent while issue was closed.
Patchset 22 (id:??) landed as
https://crrev.com/834d10a11de9909062d6817583f1a769d6465a3c
Cr-Commit-Position: refs/heads/master@{#329154}

Powered by Google App Engine
This is Rietveld 408576698