1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "storage/browser/quota/special_storage_policy.h"
9 SpecialStoragePolicy::Observer::~Observer() {}
11 SpecialStoragePolicy::SpecialStoragePolicy() {}
13 SpecialStoragePolicy::~SpecialStoragePolicy() {}
15 void SpecialStoragePolicy::AddObserver(Observer
* observer
) {
16 observers_
.AddObserver(observer
);
19 void SpecialStoragePolicy::RemoveObserver(Observer
* observer
) {
20 observers_
.RemoveObserver(observer
);
23 void SpecialStoragePolicy::NotifyGranted(const GURL
& origin
, int change_flags
) {
24 scoped_refptr
<SpecialStoragePolicy
> protect(this);
25 FOR_EACH_OBSERVER(Observer
, observers_
, OnGranted(origin
, change_flags
));
28 void SpecialStoragePolicy::NotifyRevoked(const GURL
& origin
, int change_flags
) {
29 scoped_refptr
<SpecialStoragePolicy
> protect(this);
30 FOR_EACH_OBSERVER(Observer
, observers_
, OnRevoked(origin
, change_flags
));
33 void SpecialStoragePolicy::NotifyCleared() {
34 scoped_refptr
<SpecialStoragePolicy
> protect(this);
35 FOR_EACH_OBSERVER(Observer
, observers_
, OnCleared());
38 } // namespace storage