#include "content/browser/plugin_list.h"
#include <string>
#include "base/files/file_path.h"
#include "base/memory/raw_ptr.h"
#include "content/public/test/browser_task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
namespace content {
namespace {
base::FilePath::CharType kFooPath[] = …);
base::FilePath::CharType kBarPath[] = …);
const char kFooMimeType[] = …;
const char kFooFileType[] = …;
bool Equals(const WebPluginInfo& a, const WebPluginInfo& b) { … }
bool Contains(const std::vector<WebPluginInfo>& list,
const WebPluginInfo& plugin) { … }
}
class PluginListTest : public testing::Test { … };
TEST_F(PluginListTest, GetPlugins) { … }
TEST_F(PluginListTest, BadPluginDescription) { … }
TEST_F(PluginListTest, GetPluginInfoArray) { … }
}