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

Issue 1877123003: Reland: Switch components/password_manager code from IPC messages to Mojo. (Closed)

Created:
4 years, 8 months ago by leonhsl(Using Gerrit)
Modified:
4 years, 8 months ago
CC:
Aaron Boodman, abarth-chromium, ben+mojo_chromium.org, blundell+watchlist_chromium.org, chromium-reviews, darin (slow to review), darin-cc_chromium.org, droger+watchlist_chromium.org, gcasto+watchlist_chromium.org, jam, mkwst+watchlist-passwords_chromium.org, mkwst+moarreviews-renderer_chromium.org, mlamouri+watch-content_chromium.org, qsr+mojo_chromium.org, sdefresne+watchlist_chromium.org, sdefresne+watch_chromium.org, vabr+watchlistpasswordmanager_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

Reland: Switch components/password_manager code from IPC messages to Mojo. Original CL was found breaking GPU Linux Builder after landed.. Fix chrome/browser/BUILD.gn and reland. The original CL: https://crrev.com/4a2f71f4c9e9e2c3ac0e4622c12e5dc0c5ebfe24 https://crrev.com/d20fb918841354a75546fa38b5307aaba117598b Original CL description follows: Replace credential_manager_messages.h IPC to Mojo service. BUG=582391 TBR=vabr@chromium.org,rockot@chromium.org,tsepez@chromium.org Committed: https://crrev.com/952ea3256d245d6b7f6bd797d6c4304b2c2b7d71 Cr-Commit-Position: refs/heads/master@{#386904}

Patch Set 1 : The original CL https://codereview.chromium.org/1866643002/ #

Patch Set 2 : Fix chrome/browser/BUILD.gn #

Patch Set 3 : Rebase only #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1015 lines, -2528 lines) Patch
M chrome/browser/BUILD.gn View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/chrome_content_browser_client.cc View 1 2 2 chunks +8 lines, -0 lines 0 comments Download
M chrome/browser/password_manager/chrome_password_manager_client.h View 3 chunks +9 lines, -3 lines 0 comments Download
M chrome/browser/password_manager/chrome_password_manager_client.cc View 3 chunks +15 lines, -2 lines 0 comments Download
M chrome/browser/password_manager/chrome_password_manager_client_unittest.cc View 1 chunk +0 lines, -1 line 0 comments Download
M chrome/chrome_common.gypi View 1 chunk +1 line, -1 line 0 comments Download
M chrome/common/BUILD.gn View 1 chunk +1 line, -1 line 0 comments Download
M components/BUILD.gn View 1 chunk +0 lines, -1 line 0 comments Download
M components/components_tests.gyp View 2 chunks +1 line, -2 lines 0 comments Download
M components/password_manager.gypi View 4 chunks +38 lines, -17 lines 0 comments Download
M components/password_manager/content/DEPS View 1 chunk +1 line, -1 line 0 comments Download
M components/password_manager/content/browser/BUILD.gn View 3 chunks +6 lines, -4 lines 0 comments Download
M components/password_manager/content/browser/DEPS View 1 chunk +2 lines, -0 lines 0 comments Download
D components/password_manager/content/browser/credential_manager_dispatcher.h View 1 chunk +0 lines, -129 lines 0 comments Download
D components/password_manager/content/browser/credential_manager_dispatcher.cc View 1 chunk +0 lines, -292 lines 0 comments Download
D components/password_manager/content/browser/credential_manager_dispatcher_unittest.cc View 1 chunk +0 lines, -1191 lines 0 comments Download
A + components/password_manager/content/browser/credential_manager_impl.h View 5 chunks +32 lines, -35 lines 0 comments Download
A + components/password_manager/content/browser/credential_manager_impl.cc View 10 chunks +79 lines, -90 lines 0 comments Download
A + components/password_manager/content/browser/credential_manager_impl_unittest.cc View 54 chunks +251 lines, -293 lines 0 comments Download
D components/password_manager/content/common/BUILD.gn View 1 chunk +0 lines, -22 lines 0 comments Download
D components/password_manager/content/common/DEPS View 1 chunk +0 lines, -4 lines 0 comments Download
D components/password_manager/content/common/OWNERS View 1 chunk +0 lines, -13 lines 0 comments Download
D components/password_manager/content/common/credential_manager_content_utils.h View 1 chunk +0 lines, -22 lines 0 comments Download
D components/password_manager/content/common/credential_manager_content_utils.cc View 1 chunk +0 lines, -36 lines 0 comments Download
D components/password_manager/content/common/credential_manager_message_generator.h View 1 chunk +0 lines, -7 lines 0 comments Download
D components/password_manager/content/common/credential_manager_message_generator.cc View 1 chunk +0 lines, -33 lines 0 comments Download
D components/password_manager/content/common/credential_manager_messages.h View 1 chunk +0 lines, -86 lines 0 comments Download
A + components/password_manager/content/public/cpp/BUILD.gn View 1 2 1 chunk +11 lines, -11 lines 0 comments Download
A components/password_manager/content/public/cpp/type_converters.h View 1 chunk +51 lines, -0 lines 0 comments Download
A components/password_manager/content/public/cpp/type_converters.cc View 1 chunk +128 lines, -0 lines 0 comments Download
A + components/password_manager/content/public/interfaces/BUILD.gn View 1 2 1 chunk +5 lines, -3 lines 0 comments Download
A + components/password_manager/content/public/interfaces/OWNERS View 1 chunk +2 lines, -0 lines 0 comments Download
A components/password_manager/content/public/interfaces/credential_manager.mojom View 1 chunk +44 lines, -0 lines 0 comments Download
M components/password_manager/content/renderer/BUILD.gn View 2 chunks +4 lines, -4 lines 0 comments Download
M components/password_manager/content/renderer/DEPS View 1 chunk +1 line, -0 lines 0 comments Download
M components/password_manager/content/renderer/credential_manager_client.h View 3 chunks +4 lines, -27 lines 0 comments Download
M components/password_manager/content/renderer/credential_manager_client.cc View 3 chunks +154 lines, -85 lines 0 comments Download
M components/password_manager/content/renderer/credential_manager_client_browsertest.cc View 5 chunks +111 lines, -83 lines 0 comments Download
M components/password_manager/core/browser/credential_manager_pending_request_task.h View 5 chunks +10 lines, -5 lines 0 comments Download
M components/password_manager/core/browser/credential_manager_pending_request_task.cc View 6 chunks +7 lines, -7 lines 0 comments Download
M components/password_manager/core/common/credential_manager_types.h View 2 chunks +2 lines, -1 line 0 comments Download
M components/password_manager/core/common/credential_manager_types.cc View 1 chunk +10 lines, -2 lines 0 comments Download
M content/content_common_mojo_bindings.gyp View 1 2 2 chunks +4 lines, -4 lines 0 comments Download
M ios/chrome/browser/passwords/credential_manager.h View 2 chunks +7 lines, -2 lines 0 comments Download
M ios/chrome/browser/passwords/credential_manager.mm View 6 chunks +15 lines, -7 lines 0 comments Download
M ipc/ipc_message_start.h View 1 chunk +0 lines, -1 line 0 comments Download

Messages

Total messages: 38 (15 generated)
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1877123003/1 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1877123003/1
4 years, 8 months ago (2016-04-12 05:40:22 UTC) #2
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1877123003/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1877123003/20001
4 years, 8 months ago (2016-04-12 05:42:37 UTC) #4
commit-bot: I haz the power
Dry run: 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/167376)
4 years, 8 months ago (2016-04-12 05:52:11 UTC) #6
leonhsl(Using Gerrit)
Hi, I really hesitated to add all of you again for review, but to land ...
4 years, 8 months ago (2016-04-12 07:39:22 UTC) #8
leonhsl(Using Gerrit)
"ninja -C out/Release chrome/browser:test_support_ui" is the root cause of the GPU Linux Builder failure which ...
4 years, 8 months ago (2016-04-12 07:54:53 UTC) #10
vabr (Chromium)
On 2016/04/12 07:54:53, leonhsl wrote: > "ninja -C out/Release chrome/browser:test_support_ui" is the root cause of ...
4 years, 8 months ago (2016-04-12 08:19:36 UTC) #11
fs
On 2016/04/12 at 08:19:36, vabr wrote: > On 2016/04/12 07:54:53, leonhsl wrote: > > "ninja ...
4 years, 8 months ago (2016-04-12 08:26:20 UTC) #12
vabr (Chromium)
> > As for the bot, the only linux one with GPU in the name ...
4 years, 8 months ago (2016-04-12 08:30:50 UTC) #13
leonhsl(Using Gerrit)
On 2016/04/12 08:30:50, vabr (Chromium) wrote: > > > As for the bot, the only ...
4 years, 8 months ago (2016-04-12 09:20:43 UTC) #14
vabr (Chromium)
On 2016/04/12 09:20:43, leonhsl wrote: > On 2016/04/12 08:30:50, vabr (Chromium) wrote: > > > ...
4 years, 8 months ago (2016-04-12 09:29:15 UTC) #15
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1877123003/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1877123003/20001
4 years, 8 months ago (2016-04-12 09:59:09 UTC) #18
leonhsl(Using Gerrit)
On 2016/04/12 09:29:15, vabr (Chromium) wrote: > On 2016/04/12 09:20:43, leonhsl wrote: > > On ...
4 years, 8 months ago (2016-04-12 10:03:36 UTC) #19
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 8 months ago (2016-04-12 10:04:09 UTC) #21
vabr (Chromium)
On 2016/04/12 10:03:36, leonhsl wrote: > On 2016/04/12 09:29:15, vabr (Chromium) wrote: > > On ...
4 years, 8 months ago (2016-04-12 10:18:17 UTC) #22
Tom Sepez
lgtm
4 years, 8 months ago (2016-04-12 16:28:55 UTC) #23
jochen (gone - plz use gerrit)
lgtm
4 years, 8 months ago (2016-04-12 18:50:52 UTC) #24
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1877123003/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1877123003/20001
4 years, 8 months ago (2016-04-13 00:21:40 UTC) #26
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/167850)
4 years, 8 months ago (2016-04-13 00:29:28 UTC) #28
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1877123003/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1877123003/20001
4 years, 8 months ago (2016-04-13 00:38:52 UTC) #30
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/167859)
4 years, 8 months ago (2016-04-13 00:46:25 UTC) #32
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1877123003/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1877123003/40001
4 years, 8 months ago (2016-04-13 00:59:21 UTC) #35
commit-bot: I haz the power
Committed patchset #3 (id:40001)
4 years, 8 months ago (2016-04-13 02:45:06 UTC) #36
commit-bot: I haz the power
4 years, 8 months ago (2016-04-13 02:46:32 UTC) #38
Message was sent while issue was closed.
Patchset 3 (id:??) landed as
https://crrev.com/952ea3256d245d6b7f6bd797d6c4304b2c2b7d71
Cr-Commit-Position: refs/heads/master@{#386904}

Powered by Google App Engine
This is Rietveld 408576698