diff options
author | gspencer@chromium.org <gspencer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-11 23:02:54 +0000 |
---|---|---|
committer | gspencer@chromium.org <gspencer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-11 23:02:54 +0000 |
commit | 01c988df2e091c8c1c7b2d0fe652124d8e2d0101 (patch) | |
tree | a4c2c68a29d0500d6422f72dc9a709919dbf38a3 /chromeos/chromeos_test_utils.cc | |
parent | 6ba4d65ab5e3dd39bb7098a4a19265cb7593f482 (diff) | |
download | chromium_src-01c988df2e091c8c1c7b2d0fe652124d8e2d0101.zip chromium_src-01c988df2e091c8c1c7b2d0fe652124d8e2d0101.tar.gz chromium_src-01c988df2e091c8c1c7b2d0fe652124d8e2d0101.tar.bz2 |
This moves the ONC parsing code into chromeos/network/onc
so that it can be used there without violating dependency
rules.
(Using the "refactoring" OWNERS TBR rule...)
BUG=none
TEST=ran unit tests
TBR=jhawkins@chromium.org
Review URL: https://chromiumcodereview.appspot.com/11299236
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@172446 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos/chromeos_test_utils.cc')
-rw-r--r-- | chromeos/chromeos_test_utils.cc | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/chromeos/chromeos_test_utils.cc b/chromeos/chromeos_test_utils.cc new file mode 100644 index 0000000..3455644 --- /dev/null +++ b/chromeos/chromeos_test_utils.cc @@ -0,0 +1,32 @@ +// Copyright (c) 2012 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. + +#include "chromeos/chromeos_test_utils.h" + +#include "base/file_path.h" +#include "base/file_util.h" +#include "base/path_service.h" + +namespace chromeos { +namespace test_utils { + +bool GetTestDataPath(const std::string& component, + const std::string& filename, + FilePath* data_dir) { + FilePath path; + if (!PathService::Get(base::DIR_SOURCE_ROOT, &path)) + return false; + path = path.Append(FILE_PATH_LITERAL("chromeos")); + path = path.Append(FILE_PATH_LITERAL("test")); + path = path.Append(FILE_PATH_LITERAL("data")); + if (!file_util::PathExists(path)) // We don't want to create this. + return false; + DCHECK(data_dir); + path = path.Append(component); + *data_dir = path.Append(filename); + return true; +} + +} // namespace test_utils +} // namespace chromeos |