electron/shell/browser/special_storage_policy.cc

46 lines
1.1 KiB
C++
Raw Normal View History

2015-10-12 13:09:39 +00:00
// Copyright 2014 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.
#include "shell/browser/special_storage_policy.h"
2015-10-12 13:09:39 +00:00
#include "base/bind.h"
#include "base/callback.h"
namespace electron {
2015-10-12 13:09:39 +00:00
SpecialStoragePolicy::SpecialStoragePolicy() = default;
2015-10-12 13:09:39 +00:00
SpecialStoragePolicy::~SpecialStoragePolicy() = default;
2015-10-12 13:09:39 +00:00
bool SpecialStoragePolicy::IsStorageProtected(const GURL& origin) {
return true;
}
bool SpecialStoragePolicy::IsStorageUnlimited(const GURL& origin) {
return true;
}
2015-12-07 11:55:01 +00:00
bool SpecialStoragePolicy::IsStorageDurable(const GURL& origin) {
return true;
}
2017-04-04 04:43:49 +00:00
bool SpecialStoragePolicy::HasIsolatedStorage(const GURL& origin) {
2015-10-12 13:09:39 +00:00
return false;
}
2017-04-04 04:43:49 +00:00
bool SpecialStoragePolicy::IsStorageSessionOnly(const GURL& origin) {
2015-10-12 13:09:39 +00:00
return false;
}
2017-04-04 04:43:49 +00:00
bool SpecialStoragePolicy::HasSessionOnlyOrigins() {
2015-10-12 13:09:39 +00:00
return false;
}
network::SessionCleanupCookieStore::DeleteCookiePredicate
SpecialStoragePolicy::CreateDeleteCookieOnExitPredicate() {
return network::SessionCleanupCookieStore::DeleteCookiePredicate();
}
} // namespace electron