[Eraser strings] Remove unused Supervised User infobar and corresponding strings
[chromium-blink-merge.git] / chrome / installer / util / product_unittest.h
blobad8a64afd1e78e092a8ac52b2196ad7cd0714a9a
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_INSTALLER_UTIL_PRODUCT_UNITTEST_H_
6 #define CHROME_INSTALLER_UTIL_PRODUCT_UNITTEST_H_
8 #include <windows.h>
10 #include "base/files/file_path.h"
11 #include "base/files/scoped_temp_dir.h"
12 #include "testing/gtest/include/gtest/gtest.h"
14 class TestWithTempDir : public testing::Test {
15 protected:
16 void SetUp() override;
17 void TearDown() override;
19 base::ScopedTempDir test_dir_;
22 class TestWithTempDirAndDeleteTempOverrideKeys : public TestWithTempDir {
23 protected:
24 void SetUp() override;
25 void TearDown() override;
28 #endif // CHROME_INSTALLER_UTIL_PRODUCT_UNITTEST_H_