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

Unified Diff: content/renderer/pepper/pepper_plugin_instance_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
« no previous file with comments | « content/renderer/mojo_context_state.cc ('k') | content/renderer/pepper/plugin_instance_throttler_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/pepper_plugin_instance_impl.cc
diff --git a/content/renderer/pepper/pepper_plugin_instance_impl.cc b/content/renderer/pepper/pepper_plugin_instance_impl.cc
index 1c8fba33015513da75310103dbd618db6540805c..e0fa10353ae397051dd7e536a84861165a824c54 100644
--- a/content/renderer/pepper/pepper_plugin_instance_impl.cc
+++ b/content/renderer/pepper/pepper_plugin_instance_impl.cc
@@ -299,7 +299,7 @@ bool SecurityOriginForInstance(PP_Instance instance_id,
return false;
WebElement plugin_element = instance->container()->element();
- *security_origin = plugin_element.document().securityOrigin();
+ *security_origin = plugin_element.document().getSecurityOrigin();
return true;
}
@@ -3180,8 +3180,8 @@ bool PepperPluginInstanceImpl::CanAccessMainFrame() const {
blink::WebDocument main_document =
containing_document.frame()->view()->mainFrame()->document();
- return containing_document.securityOrigin().canAccess(
- main_document.securityOrigin());
+ return containing_document.getSecurityOrigin().canAccess(
+ main_document.getSecurityOrigin());
}
void PepperPluginInstanceImpl::KeepSizeAttributesBeforeFullscreen() {
« no previous file with comments | « content/renderer/mojo_context_state.cc ('k') | content/renderer/pepper/plugin_instance_throttler_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698