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

Unified Diff: components/nacl/renderer/ppb_nacl_private_impl.cc

Issue 1773813007: blink: Rename modules/ method to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-modules: rebase-fixes Created 4 years, 9 months 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
Index: components/nacl/renderer/ppb_nacl_private_impl.cc
diff --git a/components/nacl/renderer/ppb_nacl_private_impl.cc b/components/nacl/renderer/ppb_nacl_private_impl.cc
index 57c78749485a44af3f08388ca470d28590acc747..eb325e4640b5fc8aabee9cd2dd59b93806c2aa1a 100644
--- a/components/nacl/renderer/ppb_nacl_private_impl.cc
+++ b/components/nacl/renderer/ppb_nacl_private_impl.cc
@@ -108,7 +108,7 @@ bool CanOpenViaFastPath(content::PepperPluginInstance* plugin_instance,
// same-origin policy which prevents the app from requesting resources from
// another app.
blink::WebSecurityOrigin security_origin =
- plugin_instance->GetContainer()->element().document().securityOrigin();
+ plugin_instance->GetContainer()->element().document().getSecurityOrigin();
return security_origin.canRequest(gurl);
}
@@ -333,7 +333,7 @@ blink::WebURLLoader* CreateWebURLLoader(const blink::WebDocument& document,
// Options settings here follow the original behavior in the trusted
// plugin and PepperURLLoaderHost.
- if (document.securityOrigin().canRequest(gurl)) {
+ if (document.getSecurityOrigin().canRequest(gurl)) {
options.allowCredentials = true;
} else {
// Allow CORS.

Powered by Google App Engine
This is Rietveld 408576698