#include "components/browsing_data/content/browsing_data_helper.h"
#include "components/browsing_data/content/browsing_data_model.h"
#include "content/public/common/url_constants.h"
#include "content/public/test/browser_task_environment.h"
#include "content/public/test/test_browser_context.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/storage_key/storage_key.h"
#include "url/gurl.h"
#include "url/url_constants.h"
namespace browsing_data {
namespace {
class BrowsingDataHelperTest : public testing::Test { … };
TEST_F(BrowsingDataHelperTest, WebStorageSchemesAreWebSchemes) { … }
TEST_F(BrowsingDataHelperTest, ChromeSchemesAreNotWebSchemes) { … }
TEST_F(BrowsingDataHelperTest, SchemesThatCantStoreDataDontMatchAnything) { … }
TEST_F(BrowsingDataHelperTest, GetUniqueThirdPartyCookiesHostCount) { … }
TEST_F(BrowsingDataHelperTest, ABAEmbedCookies) { … }
}
}