blob: 3abab6318c5de97093f5097bfa2f97203db88a99 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_CHROME_CLEANER_TEST_TEST_STRINGS_H_
#define CHROME_CHROME_CLEANER_TEST_TEST_STRINGS_H_
#include <windows.h>
namespace chrome_cleaner {
// Command line switches.
// The switch to activate the sleeping action for specified delay in minutes
// before killing the process.
extern const char kTestSleepMinutesSwitch[];
// The switch to signal the event with the name given as a switch value.
extern const char kTestEventToSignal[];
// Test the overwrite of the ZoneIdentifier.
extern const char kTestForceOverwriteZoneIdentifier[];
// A valid uft8 name for a file.
extern const wchar_t kValidUtf8Name[];
// An invalid uft8 name for a file.
extern const wchar_t kInvalidUtf8Name[];
// The test data written to file.
const int kFileContentSize = 26;
extern const char kFileContent[kFileContentSize];
// GUIDs for tests.
extern const GUID kGUID1;
extern const GUID kGUID2;
extern const GUID kGUID3;
extern const wchar_t kGUID1Str[];
extern const wchar_t kGUID2Str[];
extern const wchar_t kGUID3Str[];
} // namespace chrome_cleaner
#endif // CHROME_CHROME_CLEANER_TEST_TEST_STRINGS_H_