summaryrefslogtreecommitdiffstats
path: root/chrome/test/test_launcher_utils.h
blob: e83b519135d8ab480b741b66da0d943ef9a4e946 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) 2010 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_TEST_TEST_LAUNCHER_UTILS_H_
#define CHROME_TEST_TEST_LAUNCHER_UTILS_H_
#pragma once

#include "base/compiler_specific.h"
#include "base/file_path.h"

// A set of utilities for test code that launches separate processes.
namespace test_launcher_utils {

// Overrides the current process' user data dir.
bool OverrideUserDataDir(const FilePath& user_data_dir) WARN_UNUSED_RESULT;

}  // namespace test_launcher_utils

#endif  // CHROME_TEST_TEST_LAUNCHER_UTILS_H_