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

Unified Diff: chrome/renderer/extensions/app_bindings.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: chrome/renderer/extensions/app_bindings.cc
diff --git a/chrome/renderer/extensions/app_bindings.cc b/chrome/renderer/extensions/app_bindings.cc
index 1fc204ceac85e32ba49a6b60aaa7b4e95e9d9c50..0961814c69d11b97f9704097b8c9b37d7f43f9d0 100644
--- a/chrome/renderer/extensions/app_bindings.cc
+++ b/chrome/renderer/extensions/app_bindings.cc
@@ -73,7 +73,7 @@ void AppBindings::GetDetails(
v8::Local<v8::Value> AppBindings::GetDetailsImpl(blink::WebLocalFrame* frame) {
v8::Isolate* isolate = frame->mainWorldScriptContext()->GetIsolate();
- if (frame->document().securityOrigin().isUnique())
+ if (frame->document().getSecurityOrigin().isUnique())
return v8::Null(isolate);
const Extension* extension =
@@ -117,7 +117,7 @@ void AppBindings::GetRunningState(
// To distinguish between ready_to_run and cannot_run states, we need the app
// from the top frame.
blink::WebSecurityOrigin top_frame_security_origin =
- context()->web_frame()->top()->securityOrigin();
+ context()->web_frame()->top()->getSecurityOrigin();
const RendererExtensionRegistry* extensions =
RendererExtensionRegistry::Get();
« no previous file with comments | « chrome/renderer/content_settings_observer.cc ('k') | chrome/renderer/extensions/chrome_extensions_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698