chromium/extensions/shell/browser/shell_special_storage_policy.cc

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

#include "extensions/shell/browser/shell_special_storage_policy.h"

namespace extensions {

ShellSpecialStoragePolicy::ShellSpecialStoragePolicy() {}

ShellSpecialStoragePolicy::~ShellSpecialStoragePolicy() {}

bool ShellSpecialStoragePolicy::IsStorageProtected(const GURL& origin) {}

bool ShellSpecialStoragePolicy::IsStorageUnlimited(const GURL& origin) {}

bool ShellSpecialStoragePolicy::IsStorageDurable(const GURL& origin) {}

bool ShellSpecialStoragePolicy::IsStorageSessionOnly(const GURL& origin) {}

bool ShellSpecialStoragePolicy::HasSessionOnlyOrigins() {}

bool ShellSpecialStoragePolicy::HasIsolatedStorage(const GURL& origin) {}

}  // namespace extensions