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

Issue 1890203002: Implement Web Restrictions in WebView. (Closed)

Created:
4 years, 8 months ago by aberent
Modified:
4 years, 4 months ago
CC:
Aaron Boodman, abarth-chromium, android-webview-reviews_chromium.org, asvitkine+watch_chromium.org, ben+mojo_chromium.org, blundell+watchlist_chromium.org, chromium-reviews, darin (slow to review), droger+watchlist_chromium.org, pam+watch_chromium.org, qsr+mojo_chromium.org, sdefresne+watchlist_chromium.org, tnagel+watch_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

Implement Web Restrictions in WebView. This CL: - Lets WebView ask a content provider (the name of which is set by a WebView policy) whether a URL should be accessible. - Implements an error page when a URL is not accessible, that, if it is supported by the content provider, lets the user request access - Makes some fixes to the supervised user content provider so that this works with WebView. BUG=604330 Committed: https://crrev.com/a7f273b27fd4f7ec3d809c83b4fb53b0f3167c55 Cr-Commit-Position: refs/heads/master@{#412791}

Patch Set 1 #

Total comments: 46

Patch Set 2 : Manual rebase, no other changes #

Total comments: 6

Patch Set 3 : Rebase again; also fix one Findbugs problem #

Patch Set 4 : Respond to comments, and fix a possible race in displaying error page #

Total comments: 19

Patch Set 5 : Respond to more comments #

Patch Set 6 : Rebase (again!) #

Total comments: 12

Patch Set 7 : Remove resources; fail if server missing. #

Patch Set 8 : Rebase and fixes for Mojo changes #

Patch Set 9 : Fix gn check issue #

Patch Set 10 : Fix test for changes to handling of no content provider #

Total comments: 4

Patch Set 11 : Fix behaviour when no content provider has been set up #

Patch Set 12 : Rebase and update for JNI generator change #

Patch Set 13 : Fix mojom nits #

Total comments: 2

Patch Set 14 : Fix web_restictions DEPS #

Patch Set 15 : Yet another manual rebase! #

Total comments: 6

Patch Set 16 : Fix final nits #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1093 lines, -1274 lines) Patch
M android_webview/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +4 lines, -1 line 0 comments Download
M android_webview/DEPS View 1 2 3 4 5 6 7 1 chunk +2 lines, -0 lines 0 comments Download
M android_webview/android_webview.gyp View 1 2 3 4 5 6 7 4 chunks +7 lines, -0 lines 0 comments Download
M android_webview/browser/DEPS View 1 2 3 4 5 6 7 1 chunk +2 lines, -0 lines 0 comments Download
M android_webview/browser/aw_browser_context.h View 1 2 3 4 5 6 5 chunks +9 lines, -0 lines 0 comments Download
M android_webview/browser/aw_browser_context.cc View 1 2 3 4 5 6 5 chunks +24 lines, -0 lines 0 comments Download
M android_webview/browser/aw_browser_policy_connector.cc View 1 chunk +5 lines, -0 lines 0 comments Download
M android_webview/browser/renderer_host/aw_render_view_host_ext.h View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M android_webview/browser/renderer_host/aw_render_view_host_ext.cc View 1 2 3 4 5 6 3 chunks +9 lines, -0 lines 0 comments Download
M android_webview/browser/renderer_host/aw_resource_dispatcher_host_delegate.cc View 1 2 3 4 5 6 7 3 chunks +7 lines, -1 line 0 comments Download
M android_webview/renderer/DEPS View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download
M android_webview/renderer/aw_content_renderer_client.h View 1 2 3 4 5 6 2 chunks +8 lines, -3 lines 0 comments Download
M android_webview/renderer/aw_content_renderer_client.cc View 1 2 3 4 5 6 7 4 chunks +23 lines, -3 lines 0 comments Download
M android_webview/webview_repack_locales.gni View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/android/java/src/org/chromium/chrome/browser/superviseduser/SupervisedUserContentProvider.java View 1 2 3 4 7 chunks +43 lines, -38 lines 0 comments Download
M chrome/android/javatests/src/org/chromium/chrome/browser/superviseduser/SupervisedUserContentProviderTest.java View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M chrome/android/junit/src/org/chromium/chrome/browser/superviseduser/SupervisedUserContentProviderUnitTest.java View 1 2 3 4 2 chunks +3 lines, -1 line 0 comments Download
M chrome/browser/supervised_user/supervised_user_interstitial.cc View 1 chunk +7 lines, -8 lines 0 comments Download
M chrome/chrome.gyp View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M chrome/test/data/policy/policy_test_cases.json View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +3 lines, -0 lines 0 comments Download
M components/components_tests.gyp View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
M components/policy/resources/policy_templates.json View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +16 lines, -1 line 0 comments Download
M components/supervised_user_error_page.gypi View 2 chunks +20 lines, -1 line 0 comments Download
M components/supervised_user_error_page/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +24 lines, -0 lines 0 comments Download
M components/supervised_user_error_page/DEPS View 1 2 3 4 5 6 1 chunk +7 lines, -1 line 0 comments Download
A components/supervised_user_error_page/gin_wrapper.h View 1 2 3 4 5 6 1 chunk +78 lines, -0 lines 0 comments Download
A components/supervised_user_error_page/gin_wrapper.cc View 1 2 3 4 5 6 1 chunk +112 lines, -0 lines 0 comments Download
M components/supervised_user_error_page/resources/supervised_user_block_interstitial.js View 1 2 3 5 chunks +10 lines, -4 lines 0 comments Download
M components/supervised_user_error_page/supervised_user_error_page.h View 1 2 3 2 chunks +4 lines, -6 lines 0 comments Download
M components/supervised_user_error_page/supervised_user_error_page.cc View 1 2 3 6 chunks +18 lines, -13 lines 0 comments Download
A components/supervised_user_error_page/supervised_user_error_page_android.h View 1 2 3 1 chunk +18 lines, -0 lines 0 comments Download
A components/supervised_user_error_page/supervised_user_error_page_android.cc View 1 2 3 4 5 6 1 chunk +36 lines, -0 lines 0 comments Download
M components/supervised_user_error_page/supervised_user_error_page_unittest.cc View 1 chunk +5 lines, -7 lines 0 comments Download
M components/web_restrictions.gypi View 1 2 5 chunks +24 lines, -22 lines 0 comments Download
M components/web_restrictions/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 5 chunks +19 lines, -19 lines 0 comments Download
M components/web_restrictions/browser/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -0 lines 0 comments Download
D components/web_restrictions/browser/java/src/org/chromium/components/webrestrictions/WebRestrictionsClient.java View 1 chunk +0 lines, -154 lines 0 comments Download
D components/web_restrictions/browser/java/src/org/chromium/components/webrestrictions/WebRestrictionsContentProvider.java View 1 chunk +0 lines, -267 lines 0 comments Download
A + components/web_restrictions/browser/java/src/org/chromium/components/webrestrictions/browser/WebRestrictionsClient.java View 1 2 3 5 chunks +6 lines, -44 lines 0 comments Download
A components/web_restrictions/browser/java/src/org/chromium/components/webrestrictions/browser/WebRestrictionsClientResult.java View 1 2 3 4 5 6 1 chunk +84 lines, -0 lines 0 comments Download
A + components/web_restrictions/browser/java/src/org/chromium/components/webrestrictions/browser/WebRestrictionsContentProvider.java View 1 2 3 6 chunks +18 lines, -11 lines 0 comments Download
D components/web_restrictions/browser/javatest/src/org/chromium/components/webrestrictions/MockWebRestrictionsClient.java View 1 chunk +0 lines, -125 lines 0 comments Download
A + components/web_restrictions/browser/javatest/src/org/chromium/components/webrestrictions/browser/MockWebRestrictionsClient.java View 2 chunks +3 lines, -3 lines 0 comments Download
D components/web_restrictions/browser/junit/src/org/chromium/components/webrestrictions/WebRestrictionsClientTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +0 lines, -123 lines 0 comments Download
D components/web_restrictions/browser/junit/src/org/chromium/components/webrestrictions/WebRestrictionsContentProviderTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +0 lines, -148 lines 0 comments Download
A + components/web_restrictions/browser/junit/src/org/chromium/components/webrestrictions/browser/WebRestrictionsClientTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 4 chunks +9 lines, -7 lines 0 comments Download
A + components/web_restrictions/browser/junit/src/org/chromium/components/webrestrictions/browser/WebRestrictionsContentProviderTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +2 lines, -2 lines 0 comments Download
M components/web_restrictions/browser/web_restrictions_client.h View 1 2 3 4 5 6 4 chunks +48 lines, -25 lines 0 comments Download
M components/web_restrictions/browser/web_restrictions_client.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 8 chunks +79 lines, -92 lines 0 comments Download
A components/web_restrictions/browser/web_restrictions_client_result.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +36 lines, -0 lines 0 comments Download
A components/web_restrictions/browser/web_restrictions_client_result.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +54 lines, -0 lines 0 comments Download
M components/web_restrictions/browser/web_restrictions_client_unittest.cc View 1 2 3 4 chunks +32 lines, -24 lines 0 comments Download
A components/web_restrictions/browser/web_restrictions_mojo_implementation.h View 1 2 3 4 5 6 7 1 chunk +39 lines, -0 lines 0 comments Download
A components/web_restrictions/browser/web_restrictions_mojo_implementation.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +67 lines, -0 lines 0 comments Download
M components/web_restrictions/browser/web_restrictions_resource_throttle.cc View 1 chunk +1 line, -1 line 0 comments Download
M components/web_restrictions/browser/web_restrictions_resource_throttle_unittest.cc View 1 2 3 6 chunks +10 lines, -6 lines 0 comments Download
A + components/web_restrictions/interfaces/OWNERS View 1 2 3 4 5 6 7 0 chunks +-1 lines, --1 lines 0 comments Download
A components/web_restrictions/interfaces/web_restrictions.mojom View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +22 lines, -0 lines 0 comments Download
D components/web_restrictions/renderer/DEPS View 1 chunk +0 lines, -5 lines 0 comments Download
D components/web_restrictions/renderer/web_restrictions_gin_wrapper.h View 1 chunk +0 lines, -46 lines 0 comments Download
D components/web_restrictions/renderer/web_restrictions_gin_wrapper.cc View 1 chunk +0 lines, -60 lines 0 comments Download
M tools/metrics/histograms/histograms.xml View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +28 lines, -0 lines 0 comments Download

Messages

Total messages: 99 (53 generated)
aberent
4 years, 8 months ago (2016-04-15 18:15:03 UTC) #2
aberent
On 2016/04/15 18:15:03, aberent wrote: Note that this replaces and incorporated https://codereview.chromium.org/1423713015/
4 years, 8 months ago (2016-04-15 18:25:37 UTC) #4
aberent
jochen@chromium.org: Please review changes in
4 years, 8 months ago (2016-04-15 18:26:02 UTC) #6
jochen (gone - plz use gerrit)
can you reference a tracking bug from the cl description please? https://codereview.chromium.org/1890203002/diff/1/android_webview/renderer/aw_content_renderer_client.cc File android_webview/renderer/aw_content_renderer_client.cc (right): ...
4 years, 8 months ago (2016-04-17 17:07:06 UTC) #7
Thiemo Nagel
> Lets WebView ask a content provider (the name of which is set by a ...
4 years, 8 months ago (2016-04-18 09:01:39 UTC) #8
aberent
On 2016/04/18 09:01:39, Thiemo Nagel (no reviews) wrote: > > Lets WebView ask a content ...
4 years, 8 months ago (2016-04-18 10:26:57 UTC) #10
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1890203002/1 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1890203002/1
4 years, 8 months ago (2016-04-18 12:45:26 UTC) #12
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios_dbg_simulator_gn on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_gn/builds/20587) ios_rel_device_gn on ...
4 years, 8 months ago (2016-04-18 12:48:04 UTC) #14
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1890203002/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1890203002/20001
4 years, 8 months ago (2016-04-18 14:24:45 UTC) #16
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios_dbg_simulator_gn on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_gn/builds/20625)
4 years, 8 months ago (2016-04-18 14:30:54 UTC) #18
Bernhard Bauer
https://codereview.chromium.org/1890203002/diff/1/android_webview/browser/aw_browser_context.h File android_webview/browser/aw_browser_context.h (right): https://codereview.chromium.org/1890203002/diff/1/android_webview/browser/aw_browser_context.h#newcode175 android_webview/browser/aw_browser_context.h:175: StringPrefMember web_restrictions_authority_; You only need a PrefMember if you ...
4 years, 8 months ago (2016-04-18 14:48:35 UTC) #19
Torne
Haven't reviewed the whole thing in detail, but took a look through the android_webview changes ...
4 years, 8 months ago (2016-04-20 16:12:32 UTC) #20
Torne
Haven't reviewed the whole thing in detail, but took a look through the android_webview changes ...
4 years, 8 months ago (2016-04-20 16:12:33 UTC) #21
aberent
https://codereview.chromium.org/1890203002/diff/1/android_webview/browser/aw_browser_context.h File android_webview/browser/aw_browser_context.h (right): https://codereview.chromium.org/1890203002/diff/1/android_webview/browser/aw_browser_context.h#newcode175 android_webview/browser/aw_browser_context.h:175: StringPrefMember web_restrictions_authority_; On 2016/04/18 14:48:34, Bernhard Bauer wrote: > ...
4 years, 7 months ago (2016-05-18 20:06:51 UTC) #22
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1890203002/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1890203002/60001
4 years, 7 months ago (2016-05-18 20:16:25 UTC) #24
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: mac_chromium_compile_dbg_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_compile_dbg_ng/builds/205908) mac_chromium_gn_rel on ...
4 years, 7 months ago (2016-05-18 20:20:19 UTC) #26
Bernhard Bauer
https://codereview.chromium.org/1890203002/diff/60001/android_webview/browser/aw_browser_context.h File android_webview/browser/aw_browser_context.h (right): https://codereview.chromium.org/1890203002/diff/60001/android_webview/browser/aw_browser_context.h#newcode172 android_webview/browser/aw_browser_context.h:172: std::unique_ptr<PrefChangeRegistrar> pref_change_registrar_; You could make the PrefChangeRegistrar a direct ...
4 years, 7 months ago (2016-05-19 10:00:15 UTC) #27
aberent
https://codereview.chromium.org/1890203002/diff/60001/android_webview/browser/aw_browser_context.h File android_webview/browser/aw_browser_context.h (right): https://codereview.chromium.org/1890203002/diff/60001/android_webview/browser/aw_browser_context.h#newcode172 android_webview/browser/aw_browser_context.h:172: std::unique_ptr<PrefChangeRegistrar> pref_change_registrar_; On 2016/05/19 10:00:15, Bernhard Bauer wrote: > ...
4 years, 7 months ago (2016-05-19 15:44:03 UTC) #28
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1890203002/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1890203002/80001
4 years, 7 months ago (2016-05-19 17:19:39 UTC) #30
aberent
https://codereview.chromium.org/1890203002/diff/60001/tools/metrics/histograms/histograms.xml File tools/metrics/histograms/histograms.xml (left): https://codereview.chromium.org/1890203002/diff/60001/tools/metrics/histograms/histograms.xml#oldcode68777 tools/metrics/histograms/histograms.xml:68777: - ChromeOS version"/> On 2016/05/19 15:44:03, aberent wrote: > ...
4 years, 7 months ago (2016-05-19 17:22:13 UTC) #31
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: cast_shell_android on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/cast_shell_android/builds/68947)
4 years, 7 months ago (2016-05-19 17:39:50 UTC) #33
Bernhard Bauer
LGTM!
4 years, 7 months ago (2016-05-20 08:09:18 UTC) #34
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1890203002/90001
4 years, 6 months ago (2016-06-07 14:58:58 UTC) #36
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_clang_dbg_recipe on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_clang_dbg_recipe/builds/77885)
4 years, 6 months ago (2016-06-07 15:22:03 UTC) #38
jochen (gone - plz use gerrit)
lgtm with comments https://codereview.chromium.org/1890203002/diff/90001/components/supervised_user_error_page/DEPS File components/supervised_user_error_page/DEPS (right): https://codereview.chromium.org/1890203002/diff/90001/components/supervised_user_error_page/DEPS#newcode2 components/supervised_user_error_page/DEPS:2: "+components/web_restrictions", that includes browser code, please ...
4 years, 6 months ago (2016-06-07 19:16:18 UTC) #39
jochen (gone - plz use gerrit)
lgtm with comments
4 years, 6 months ago (2016-06-07 19:16:36 UTC) #40
aberent
torne@ - I am still looking at how to remove unnecessary resources from the APK, ...
4 years, 6 months ago (2016-06-08 09:47:41 UTC) #41
Thiemo Nagel
https://codereview.chromium.org/1890203002/diff/90001/components/policy/resources/policy_templates.json File components/policy/resources/policy_templates.json (right): https://codereview.chromium.org/1890203002/diff/90001/components/policy/resources/policy_templates.json#newcode8607 components/policy/resources/policy_templates.json:8607: 'tags': [], Please add 'filtering'.
4 years, 6 months ago (2016-06-08 12:25:00 UTC) #43
aberent
To avoid bloating WebView's resources the new patch sets only allow access requests in Monochrome. ...
4 years, 5 months ago (2016-07-12 18:48:25 UTC) #44
aberent
On 2016/07/12 18:48:25, aberent wrote: > To avoid bloating WebView's resources the new patch sets ...
4 years, 5 months ago (2016-07-14 16:06:53 UTC) #45
Thiemo Nagel
*/policy/* lgtm
4 years, 5 months ago (2016-07-15 12:17:58 UTC) #46
aberent
4 years, 4 months ago (2016-08-03 17:00:38 UTC) #58
aberent
tsepez@ - accidently sent too soon, security review please of components/web_restrictions/interfaces/web_restrictions.mojom
4 years, 4 months ago (2016-08-03 18:30:36 UTC) #61
Tom Sepez
Mojom LGTM with nits. https://codereview.chromium.org/1890203002/diff/160001/components/web_restrictions/interfaces/web_restrictions.mojom File components/web_restrictions/interfaces/web_restrictions.mojom (right): https://codereview.chromium.org/1890203002/diff/160001/components/web_restrictions/interfaces/web_restrictions.mojom#newcode13 components/web_restrictions/interfaces/web_restrictions.mojom:13: // Get the cached result, ...
4 years, 4 months ago (2016-08-03 20:55:41 UTC) #62
aberent
Now works with Monochrome. torne@ - PTAL and approve or comment on webview code. sky@ ...
4 years, 4 months ago (2016-08-16 16:55:45 UTC) #68
sky
https://codereview.chromium.org/1890203002/diff/220001/components/web_restrictions/browser/DEPS File components/web_restrictions/browser/DEPS (right): https://codereview.chromium.org/1890203002/diff/220001/components/web_restrictions/browser/DEPS#newcode5 components/web_restrictions/browser/DEPS:5: "+mojo", Are you sure you need mojo and not ...
4 years, 4 months ago (2016-08-16 17:27:27 UTC) #69
aberent
https://codereview.chromium.org/1890203002/diff/220001/components/web_restrictions/browser/DEPS File components/web_restrictions/browser/DEPS (right): https://codereview.chromium.org/1890203002/diff/220001/components/web_restrictions/browser/DEPS#newcode5 components/web_restrictions/browser/DEPS:5: "+mojo", On 2016/08/16 17:27:27, sky wrote: > Are you ...
4 years, 4 months ago (2016-08-16 18:45:49 UTC) #74
sky
LGTM
4 years, 4 months ago (2016-08-16 19:58:47 UTC) #79
brettw
url dep LGTM https://codereview.chromium.org/1890203002/diff/260001/components/supervised_user_error_page/BUILD.gn File components/supervised_user_error_page/BUILD.gn (right): https://codereview.chromium.org/1890203002/diff/260001/components/supervised_user_error_page/BUILD.gn#newcode36 components/supervised_user_error_page/BUILD.gn:36: "//gin:gin", This should just be "//gin" ...
4 years, 4 months ago (2016-08-17 17:45:44 UTC) #88
Torne
https://codereview.chromium.org/1890203002/diff/260001/android_webview/lib/main/webview_jni_onload.cc File android_webview/lib/main/webview_jni_onload.cc (right): https://codereview.chromium.org/1890203002/diff/260001/android_webview/lib/main/webview_jni_onload.cc#newcode16 android_webview/lib/main/webview_jni_onload.cc:16: #include "components/web_restrictions/browser/web_restrictions_client.h" nit: no need to add these now ...
4 years, 4 months ago (2016-08-17 18:20:56 UTC) #89
Torne
Oops, also meant to say "android_webview LGTM with nits" :) On Wed, 17 Aug 2016, ...
4 years, 4 months ago (2016-08-17 19:57:11 UTC) #90
aberent
https://codereview.chromium.org/1890203002/diff/260001/android_webview/lib/main/webview_jni_onload.cc File android_webview/lib/main/webview_jni_onload.cc (right): https://codereview.chromium.org/1890203002/diff/260001/android_webview/lib/main/webview_jni_onload.cc#newcode16 android_webview/lib/main/webview_jni_onload.cc:16: #include "components/web_restrictions/browser/web_restrictions_client.h" On 2016/08/17 18:20:55, Torne wrote: > nit: ...
4 years, 4 months ago (2016-08-18 09:39:59 UTC) #91
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/1890203002/280001
4 years, 4 months ago (2016-08-18 09:40:28 UTC) #94
Torne
actual LGTM as i forgot that email doesn't work any more. :p
4 years, 4 months ago (2016-08-18 10:01:47 UTC) #95
commit-bot: I haz the power
Committed patchset #16 (id:280001)
4 years, 4 months ago (2016-08-18 10:46:35 UTC) #97
commit-bot: I haz the power
4 years, 4 months ago (2016-08-18 10:48:32 UTC) #99
Message was sent while issue was closed.
Patchset 16 (id:??) landed as
https://crrev.com/a7f273b27fd4f7ec3d809c83b4fb53b0f3167c55
Cr-Commit-Position: refs/heads/master@{#412791}

Powered by Google App Engine
This is Rietveld 408576698