diff options
author | michaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-19 03:29:00 +0000 |
---|---|---|
committer | michaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-19 03:29:00 +0000 |
commit | 165bdceabe65b18a85ac10b318ce2820110d2bdb (patch) | |
tree | 1b21f5515004882c8e580a5211421ada5690e37f /webkit/appcache | |
parent | 0b52f1c47868cb6d7b132a15bd7c0a94df08de79 (diff) | |
download | chromium_src-165bdceabe65b18a85ac10b318ce2820110d2bdb.zip chromium_src-165bdceabe65b18a85ac10b318ce2820110d2bdb.tar.gz chromium_src-165bdceabe65b18a85ac10b318ce2820110d2bdb.tar.bz2 |
Fix busted build.
TBR=levin
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66736 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache')
-rw-r--r-- | webkit/appcache/appcache.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/appcache/appcache.cc b/webkit/appcache/appcache.cc index f877576..a772cdc 100644 --- a/webkit/appcache/appcache.cc +++ b/webkit/appcache/appcache.cc @@ -202,8 +202,8 @@ bool AppCache::FindResponseForRequest(const GURL& url, return true; } - if (*found_network_namespace = - IsInNetworkNamespace(url_no_ref, online_whitelist_namespaces_)) { + if ((*found_network_namespace = + IsInNetworkNamespace(url_no_ref, online_whitelist_namespaces_))) { return true; } |