Chromium Code Reviews| Index: chrome/common/chrome_content_client.cc |
| diff --git a/chrome/common/chrome_content_client.cc b/chrome/common/chrome_content_client.cc |
| index b705da133c5ab5decd532e8a3aeac726d62e3fac..82d45e4c690106503f27902c83ff698657b0341d 100644 |
| --- a/chrome/common/chrome_content_client.cc |
| +++ b/chrome/common/chrome_content_client.cc |
| @@ -22,6 +22,7 @@ |
| #include "chrome/common/chrome_switches.h" |
| #include "chrome/common/chrome_version_info.h" |
| #include "chrome/common/crash_keys.h" |
| +#include "chrome/common/origin_util.h" |
| #include "chrome/common/pepper_flash.h" |
| #include "chrome/common/render_messages.h" |
| #include "chrome/common/url_constants.h" |
| @@ -551,3 +552,7 @@ bool ChromeContentClient::GetSandboxProfileForSandboxType( |
| return false; |
| } |
| #endif |
| + |
| +bool ChromeContentClient::IsOriginTrustWorthy(const GURL& url) const { |
|
palmer
2015/04/20 22:16:18
"Trustworthy" is 1 word, so call this |IsOriginTru
kinuko
2015/04/21 16:15:48
Done.
|
| + return IsOriginSecure(url); |
| +} |