summaryrefslogtreecommitdiffstats
path: root/webkit/appcache/web_application_cache_host_impl.cc
diff options
context:
space:
mode:
authorscherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-30 01:05:43 +0000
committerscherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-30 01:05:43 +0000
commite0b9dda356e5f43cb8cf0d0b617bb029f44ea96d (patch)
tree11caebc4a96888ccb99aba8871694b3f01b374d2 /webkit/appcache/web_application_cache_host_impl.cc
parenteb72af63b5e933bb48bddbf63a3db76cef64ee70 (diff)
downloadchromium_src-e0b9dda356e5f43cb8cf0d0b617bb029f44ea96d.zip
chromium_src-e0b9dda356e5f43cb8cf0d0b617bb029f44ea96d.tar.gz
chromium_src-e0b9dda356e5f43cb8cf0d0b617bb029f44ea96d.tar.bz2
webkit: Remove use of ALLOW_THIS_IN_INITIALIZER_LIST.
It's no longer providing value as the MSVC warning is disabled during compilation. Refer to bug for details. BUG=234765 R=jamesr@chromium.org Review URL: https://codereview.chromium.org/14307012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197204 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache/web_application_cache_host_impl.cc')
-rw-r--r--webkit/appcache/web_application_cache_host_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/appcache/web_application_cache_host_impl.cc b/webkit/appcache/web_application_cache_host_impl.cc
index fed59d6..2b9eafb 100644
--- a/webkit/appcache/web_application_cache_host_impl.cc
+++ b/webkit/appcache/web_application_cache_host_impl.cc
@@ -71,7 +71,7 @@ WebApplicationCacheHostImpl::WebApplicationCacheHostImpl(
AppCacheBackend* backend)
: client_(client),
backend_(backend),
- ALLOW_THIS_IN_INITIALIZER_LIST(host_id_(all_hosts()->Add(this))),
+ host_id_(all_hosts()->Add(this)),
status_(UNCACHED),
is_scheme_supported_(false),
is_get_method_(false),