commit | 9098f900d68af46e15806188fb60f51c1682207a | [log] [tgz] |
---|---|---|
author | Avi Drissman <[email protected]> | Fri May 04 00:11:52 2018 |
committer | Commit Bot <[email protected]> | Fri May 04 00:11:52 2018 |
tree | f6f50a2969a74bfa0ac2330c642d0b270f3fa7b9 | |
parent | e6c77b80cd3c75616f92685141e6739877e31c93 [diff] [blame] |
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/component_loader_unittest.cc b/chrome/browser/extensions/component_loader_unittest.cc index aa59fd17..5c823c7 100644 --- a/chrome/browser/extensions/component_loader_unittest.cc +++ b/chrome/browser/extensions/component_loader_unittest.cc
@@ -125,7 +125,7 @@ base::FilePath GetBasePath() { base::FilePath test_data_dir; - PathService::Get(chrome::DIR_TEST_DATA, &test_data_dir); + base::PathService::Get(chrome::DIR_TEST_DATA, &test_data_dir); return test_data_dir.AppendASCII("extensions"); } };