electron/brightray/browser/special_storage_policy.cc

42 lines
966 B
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 "brightray/browser/special_storage_policy.h"
2015-10-12 13:09:39 +00:00
namespace brightray {
2018-04-18 01:56:12 +00:00
SpecialStoragePolicy::SpecialStoragePolicy() {}
2015-10-12 13:09:39 +00:00
2018-04-18 01:56:12 +00:00
SpecialStoragePolicy::~SpecialStoragePolicy() {}
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;
}
bool SpecialStoragePolicy::ShouldDeleteCookieOnExit(const GURL& origin) {
return false;
}
2015-10-12 13:09:39 +00:00
} // namespace brightray