diff options
author | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-21 20:25:56 +0000 |
---|---|---|
committer | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-21 20:25:56 +0000 |
commit | 753ab8c8d21fcc639be10d024335c1acf3d3aa44 (patch) | |
tree | 7c5faa7aa1ae494b9123c0a98dddee46aa85fc65 /content/worker | |
parent | d99038c41d98fe53d49690aef6fe4d0d9b1af58d (diff) | |
download | chromium_src-753ab8c8d21fcc639be10d024335c1acf3d3aa44.zip chromium_src-753ab8c8d21fcc639be10d024335c1acf3d3aa44.tar.gz chromium_src-753ab8c8d21fcc639be10d024335c1acf3d3aa44.tar.bz2 |
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
Diffstat (limited to 'content/worker')
-rw-r--r-- | content/worker/webworkerclient_proxy.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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; |