Move some uses of PathService into the base namespace.
BUG=838398
Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_vr
Change-Id: I0cf62fc688cdcd8b05320f1eb96543c50a8fca51
Reviewed-on: https://chromium-review.googlesource.com/1036249
Commit-Queue: Avi Drissman <[email protected]>
Reviewed-by: Drew Wilson <[email protected]>
Reviewed-by: Leonard Grey <[email protected]>
Reviewed-by: Lei Zhang <[email protected]>
Cr-Commit-Position: refs/heads/master@{#555920}
diff --git a/chrome/browser/extensions/extension_protocols_unittest.cc b/chrome/browser/extensions/extension_protocols_unittest.cc
index 3382ab3..475fccad 100644
--- a/chrome/browser/extensions/extension_protocols_unittest.cc
+++ b/chrome/browser/extensions/extension_protocols_unittest.cc
@@ -69,13 +69,13 @@
base::FilePath GetTestPath(const std::string& name) {
base::FilePath path;
- EXPECT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &path));
+ EXPECT_TRUE(base::PathService::Get(chrome::DIR_TEST_DATA, &path));
return path.AppendASCII("extensions").AppendASCII(name);
}
base::FilePath GetContentVerifierTestPath() {
base::FilePath path;
- EXPECT_TRUE(PathService::Get(extensions::DIR_TEST_DATA, &path));
+ EXPECT_TRUE(base::PathService::Get(extensions::DIR_TEST_DATA, &path));
return path.AppendASCII("content_hash_fetcher")
.AppendASCII("different_sized_files");
}
@@ -111,7 +111,7 @@
.Build();
base::FilePath path;
- EXPECT_TRUE(PathService::Get(chrome::DIR_RESOURCES, &path));
+ EXPECT_TRUE(base::PathService::Get(chrome::DIR_RESOURCES, &path));
path = path.AppendASCII("web_store");
std::string error;
@@ -668,7 +668,7 @@
base::FilePath unzipped_path = temp_dir.GetPath();
base::FilePath path;
- EXPECT_TRUE(PathService::Get(extensions::DIR_TEST_DATA, &path));
+ EXPECT_TRUE(base::PathService::Get(extensions::DIR_TEST_DATA, &path));
scoped_refptr<Extension> extension =
content_verifier_test_utils::UnzipToDirAndLoadExtension(