diff options
Diffstat (limited to 'webkit/appcache/appcache_group.cc')
-rw-r--r-- | webkit/appcache/appcache_group.cc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/webkit/appcache/appcache_group.cc b/webkit/appcache/appcache_group.cc index 0f9b4af..ddfb266 100644 --- a/webkit/appcache/appcache_group.cc +++ b/webkit/appcache/appcache_group.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -264,4 +264,9 @@ void AppCacheGroup::SetUpdateStatus(UpdateStatus status) { } } +void AppCacheGroup::NotifyContentBlocked() { + FOR_EACH_OBSERVER( + UpdateObserver, observers_, OnContentBlocked(this)); +} + } // namespace appcache |