Index: ios/web/public/origin_util.mm |
diff --git a/ios/web/public/origin_util.mm b/ios/web/public/origin_util.mm |
index 96ed012d62ed5ab46f44c24918564873dc1f6ac1..a0d8e14ffb3f756ae31f8ac444879f1bff4964e7 100644 |
--- a/ios/web/public/origin_util.mm |
+++ b/ios/web/public/origin_util.mm |
@@ -41,7 +41,7 @@ GURL GURLOriginWithWKSecurityOrigin(WKSecurityOrigin* origin) { |
url::SchemeHostPort origin_tuple(base::SysNSStringToUTF8(origin.protocol), |
base::SysNSStringToUTF8(origin.host), |
base::checked_cast<uint16_t>(origin.port)); |
- return GURL(origin_tuple.Serialize()); |
+ return origin_tuple.GetURL(); |
sdefresne
2016/10/04 10:59:33
It look like this code broke the iOS bots with a f
Charlie Harrison
2016/10/04 12:15:22
Yup, I think this indicates problems with the depe
|
} |
} // namespace web |