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

Unified Diff: android_webview/browser/aw_content_browser_client.cc

Issue 2523193002: [Autofill] Add a content_renderer manifest overlay for android_webview. (Closed)
Patch Set: Create content_renderer manifest overlay for android webview Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | android_webview/browser/aw_renderer_manifest_overlay.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/browser/aw_content_browser_client.cc
diff --git a/android_webview/browser/aw_content_browser_client.cc b/android_webview/browser/aw_content_browser_client.cc
index 9e871861a4f28a1861fbce9575a8de6e11eac125..a6bb56546a7109084126a3105ee4849681f6040c 100644
--- a/android_webview/browser/aw_content_browser_client.cc
+++ b/android_webview/browser/aw_content_browser_client.cc
@@ -534,6 +534,8 @@ AwContentBrowserClient::GetServiceManifestOverlay(const std::string& name) {
int id = -1;
if (name == content::mojom::kBrowserServiceName)
id = IDR_AW_BROWSER_MANIFEST_OVERLAY;
+ else if (name == content::mojom::kRendererServiceName)
+ id = IDR_AW_RENDERER_MANIFEST_OVERLAY;
if (id == -1)
return nullptr;
« no previous file with comments | « no previous file | android_webview/browser/aw_renderer_manifest_overlay.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698