Lines Matching full:ephy

20  .../resources/js/ephy.js                      | 26 +++++++++++++++++++
23 …--git a/embed/web-process-extension/resources/js/ephy.js b/embed/web-process-extension/resources/j…
25 --- a/embed/web-process-extension/resources/js/ephy.js
26 +++ b/embed/web-process-extension/resources/js/ephy.js
27 @@ -352,6 +352,12 @@ Ephy.hasModifiedForms = function()
31 +Ephy.isSandboxedWebContent = function()
37 Ephy.PasswordManager = class PasswordManager
40 @@ -385,6 +391,11 @@ Ephy.PasswordManager = class PasswordManager
44 + if (Ephy.isSandboxedWebContent()) {
45 + Ephy.log(`Not querying passwords for origin=${origin} because web content is sandboxed…
49Ephy.log(`Querying passwords for origin=${origin}, targetOrigin=${targetOrigin}, username=${userna…
52 @@ -396,6 +407,11 @@ Ephy.PasswordManager = class PasswordManager
56 + if (Ephy.isSandboxedWebContent()) {
57 + Ephy.log(`Not saving password for origin=${origin} because web content is sandboxed`);
61Ephy.log(`Saving password for origin=${origin}, targetOrigin=${targetOrigin}, username=${username}…
64 @@ -407,6 +423,11 @@ Ephy.PasswordManager = class PasswordManager
68 + if (Ephy.isSandboxedWebContent()) {
69 + Ephy.log(`Not requesting to save password for origin=${origin} because web content is …
73Ephy.log(`Requesting to save password for origin=${origin}, targetOrigin=${targetOrigin}, username…
76 @@ -426,6 +447,11 @@ Ephy.PasswordManager = class PasswordManager
80 + if (Ephy.isSandboxedWebContent()) {
81 + Ephy.log(`Not querying usernames for origin=${origin} because web content is sandboxed…
85 Ephy.log(`Requesting usernames for origin=${origin}`);