chromium/chrome/browser/policy/file_selection_dialogs_policy_handler_unittest.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 <memory>

#include "base/values.h"
#include "chrome/browser/policy/file_selection_dialogs_policy_handler.h"
#include "chrome/common/pref_names.h"
#include "components/policy/core/common/policy_map.h"
#include "components/policy/core/common/policy_types.h"
#include "components/policy/policy_constants.h"
#include "components/prefs/pref_value_map.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace policy {

// Test cases for how the AllowFileSelectionDialogs policy influences the
// PromptForDownload preference.
class FileSelectionDialogsPolicyTest : public testing::Test {};

TEST_F(FileSelectionDialogsPolicyTest, Default) {}

TEST_F(FileSelectionDialogsPolicyTest, EnableFileSelectionDialogs) {}

TEST_F(FileSelectionDialogsPolicyTest, DisableFileSelectionDialogs) {}

}  // namespace policy