Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Unified Diff: chromeos/chromeos_test_utils.cc

Issue 11299236: This moves the ONC parsing code into chromeos/network/onc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove translated strings Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chromeos/chromeos_test_utils.cc
diff --git a/chromeos/chromeos_test_utils.cc b/chromeos/chromeos_test_utils.cc
new file mode 100644
index 0000000000000000000000000000000000000000..3455644aeab9fd83e2c25d3f34dc50879667cb34
--- /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

Powered by Google App Engine
This is Rietveld 408576698