From 753ab8c8d21fcc639be10d024335c1acf3d3aa44 Mon Sep 17 00:00:00 2001 From: "abarth@chromium.org" Date: Mon, 21 Nov 2011 20:25:56 +0000 Subject: Update callers of WebSecurityOrigin::isEmpty to call WebSecurityOrigin::isUnique isUnique is the new name for isEmpty. Review URL: http://codereview.chromium.org/8604008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110992 0039d316-1c4b-4281-b951-d872f2087c98 --- content/worker/webworkerclient_proxy.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/worker') diff --git a/content/worker/webworkerclient_proxy.cc b/content/worker/webworkerclient_proxy.cc index 42c15b3..529a602 100644 --- a/content/worker/webworkerclient_proxy.cc +++ b/content/worker/webworkerclient_proxy.cc @@ -153,7 +153,7 @@ bool WebWorkerClientProxy::allowDatabase(WebFrame* frame, const WebString& display_name, unsigned long estimated_size) { WebSecurityOrigin origin = frame->document().securityOrigin(); - if (origin.isEmpty()) + if (origin.isUnique()) return false; bool result = false; -- cgit v1.1