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

Unified Diff: chrome/renderer/worker_content_settings_client_proxy.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/worker_content_settings_client_proxy.cc
diff --git a/chrome/renderer/worker_content_settings_client_proxy.cc b/chrome/renderer/worker_content_settings_client_proxy.cc
index cdf81ae1ffdc9cdbdc9c1dfe3ae40bcb93fef70f..ce38f347197040401b5c9815ee07732ae2068ea8 100644
--- a/chrome/renderer/worker_content_settings_client_proxy.cc
+++ b/chrome/renderer/worker_content_settings_client_proxy.cc
@@ -19,14 +19,14 @@ WorkerContentSettingsClientProxy::WorkerContentSettingsClientProxy(
blink::WebFrame* frame)
: routing_id_(render_frame->GetRoutingID()),
is_unique_origin_(false) {
- if (frame->document().securityOrigin().isUnique() ||
- frame->top()->securityOrigin().isUnique())
+ if (frame->document().getSecurityOrigin().isUnique() ||
+ frame->top()->getSecurityOrigin().isUnique())
is_unique_origin_ = true;
sync_message_filter_ = content::RenderThread::Get()->GetSyncMessageFilter();
document_origin_url_ =
- blink::WebStringToGURL(frame->document().securityOrigin().toString());
+ blink::WebStringToGURL(frame->document().getSecurityOrigin().toString());
top_frame_origin_url_ =
- blink::WebStringToGURL(frame->top()->securityOrigin().toString());
+ blink::WebStringToGURL(frame->top()->getSecurityOrigin().toString());
}
WorkerContentSettingsClientProxy::~WorkerContentSettingsClientProxy() {}
« no previous file with comments | « chrome/renderer/plugins/power_saver_info.cc ('k') | components/autofill/content/renderer/password_autofill_agent.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698