chromium/storage/browser/quota/special_storage_policy.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "storage/browser/quota/special_storage_policy.h"

#include "base/observer_list.h"

namespace storage {

SpecialStoragePolicy::Observer::~Observer() = default;

SpecialStoragePolicy::SpecialStoragePolicy() {}

SpecialStoragePolicy::~SpecialStoragePolicy() = default;

void SpecialStoragePolicy::AddObserver(Observer* observer) {}

void SpecialStoragePolicy::RemoveObserver(Observer* observer) {}

void SpecialStoragePolicy::NotifyGranted(const url::Origin& origin,
                                         int change_flags) {}

void SpecialStoragePolicy::NotifyRevoked(const url::Origin& origin,
                                         int change_flags) {}

void SpecialStoragePolicy::NotifyCleared() {}

void SpecialStoragePolicy::NotifyPolicyChanged() {}

}  // namespace storage