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

Issue 1061313003: Introduce intent manager. (Closed)

Created:
5 years, 8 months ago by qsr
Modified:
5 years, 8 months ago
Reviewers:
alhaad, ppi
CC:
mojo-reviews_chromium.org, qsr+mojo_chromium.org, viettrungluu+watch_chromium.org, yzshen+watch_chromium.org, abarth-chromium, Aaron Boodman, darin (slow to review), ben+mojo_chromium.org
Base URL:
https://github.com/domokit/mojo.git@master
Target Ref:
refs/heads/master
Project:
mojo
Visibility:
Public.

Description

Introduce intent manager. The intent manager is an Android specific service that allows privileged android mojo application to listen to external intents. R=ppi@chromium.org Committed: https://chromium.googlesource.com/external/mojo/+/1a8ef408019cc4e08d14d5f6001c44534ad841dd

Patch Set 1 #

Total comments: 28

Patch Set 2 : Follow review #

Total comments: 14

Patch Set 3 : Follow review #

Total comments: 12

Patch Set 4 : Follow review #

Unified diffs Side-by-side diffs Delta from patch set Stats (+355 lines, -0 lines) Patch
M mojo/public/java/BUILD.gn View 1 1 chunk +1 line, -0 lines 0 comments Download
A mojo/public/java/application/src/org/chromium/mojo/application/ShellHelper.java View 1 1 chunk +40 lines, -0 lines 0 comments Download
M services/android/BUILD.gn View 1 2 2 chunks +7 lines, -0 lines 0 comments Download
A services/android/intent_receiver.mojom View 1 2 1 chunk +24 lines, -0 lines 0 comments Download
M shell/BUILD.gn View 1 2 3 4 chunks +8 lines, -0 lines 0 comments Download
M shell/android/android_handler.h View 1 2 3 2 chunks +3 lines, -0 lines 0 comments Download
M shell/android/android_handler.cc View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M shell/android/apk/AndroidManifest.xml View 1 2 1 chunk +1 line, -0 lines 0 comments Download
A shell/android/apk/src/org/chromium/mojo/shell/IntentReceiverRegistry.java View 1 2 3 1 chunk +84 lines, -0 lines 0 comments Download
A shell/android/apk/src/org/chromium/mojo/shell/IntentReceiverService.java View 1 2 3 1 chunk +25 lines, -0 lines 0 comments Download
A shell/android/intent_receiver_manager_factory.h View 1 2 3 1 chunk +27 lines, -0 lines 0 comments Download
A shell/android/intent_receiver_manager_factory.cc View 1 2 3 1 chunk +17 lines, -0 lines 0 comments Download
A shell/android/intent_receiver_manager_impl.h View 1 2 3 1 chunk +33 lines, -0 lines 0 comments Download
A shell/android/intent_receiver_manager_impl.cc View 1 2 3 1 chunk +82 lines, -0 lines 0 comments Download
M shell/android/library_loader.cc View 1 2 3 2 chunks +2 lines, -0 lines 0 comments Download

Messages

Total messages: 10 (1 generated)
qsr
alhaad@chromium.org: This should allow you to use intent in the mojo world. See the example ...
5 years, 8 months ago (2015-04-07 14:02:50 UTC) #2
ppi
https://codereview.chromium.org/1061313003/diff/1/mojo/public/java/application/src/org/chromium/mojo/application/ApplicationHelper.java File mojo/public/java/application/src/org/chromium/mojo/application/ApplicationHelper.java (right): https://codereview.chromium.org/1061313003/diff/1/mojo/public/java/application/src/org/chromium/mojo/application/ApplicationHelper.java#newcode18 mojo/public/java/application/src/org/chromium/mojo/application/ApplicationHelper.java:18: public class ApplicationHelper { just a thought - would ...
5 years, 8 months ago (2015-04-07 15:42:14 UTC) #3
qsr
https://codereview.chromium.org/1061313003/diff/1/mojo/public/java/application/src/org/chromium/mojo/application/ApplicationHelper.java File mojo/public/java/application/src/org/chromium/mojo/application/ApplicationHelper.java (right): https://codereview.chromium.org/1061313003/diff/1/mojo/public/java/application/src/org/chromium/mojo/application/ApplicationHelper.java#newcode18 mojo/public/java/application/src/org/chromium/mojo/application/ApplicationHelper.java:18: public class ApplicationHelper { On 2015/04/07 15:42:13, ppi wrote: ...
5 years, 8 months ago (2015-04-08 10:04:14 UTC) #4
ppi
https://codereview.chromium.org/1061313003/diff/20001/services/android/intent.mojom File services/android/intent.mojom (right): https://codereview.chromium.org/1061313003/diff/20001/services/android/intent.mojom#newcode8 services/android/intent.mojom:8: // Service to interract with the android's intents. s/interract/interact/ ...
5 years, 8 months ago (2015-04-08 10:42:49 UTC) #5
qsr
https://codereview.chromium.org/1061313003/diff/20001/services/android/intent.mojom File services/android/intent.mojom (right): https://codereview.chromium.org/1061313003/diff/20001/services/android/intent.mojom#newcode8 services/android/intent.mojom:8: // Service to interract with the android's intents. On ...
5 years, 8 months ago (2015-04-08 11:03:23 UTC) #6
ppi
https://codereview.chromium.org/1061313003/diff/40001/shell/android/android_handler.h File shell/android/android_handler.h (right): https://codereview.chromium.org/1061313003/diff/40001/shell/android/android_handler.h#newcode39 shell/android/android_handler.h:39: IntentReceiverManagerFactory intent_manager_factory_; intent_receiver_manager_factory_? https://codereview.chromium.org/1061313003/diff/40001/shell/android/apk/src/org/chromium/mojo/shell/IntentReceiverRegistry.java File shell/android/apk/src/org/chromium/mojo/shell/IntentReceiverRegistry.java (right): https://codereview.chromium.org/1061313003/diff/40001/shell/android/apk/src/org/chromium/mojo/shell/IntentReceiverRegistry.java#newcode21 shell/android/apk/src/org/chromium/mojo/shell/IntentReceiverRegistry.java:21: ...
5 years, 8 months ago (2015-04-08 11:10:10 UTC) #7
qsr
https://codereview.chromium.org/1061313003/diff/40001/shell/android/android_handler.h File shell/android/android_handler.h (right): https://codereview.chromium.org/1061313003/diff/40001/shell/android/android_handler.h#newcode39 shell/android/android_handler.h:39: IntentReceiverManagerFactory intent_manager_factory_; On 2015/04/08 11:10:10, ppi wrote: > intent_receiver_manager_factory_? ...
5 years, 8 months ago (2015-04-08 11:16:19 UTC) #8
ppi
lgtm
5 years, 8 months ago (2015-04-08 11:24:11 UTC) #9
qsr
5 years, 8 months ago (2015-04-08 11:47:56 UTC) #10
Message was sent while issue was closed.
Committed patchset #4 (id:60001) manually as
1a8ef408019cc4e08d14d5f6001c44534ad841dd (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698