[email protected] | 32efb04 | 2013-03-29 00:23:21 | [diff] [blame] | 1 | // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "extensions/common/extension_paths.h" |
| 6 | |
thestig | 9471270 | 2014-09-10 07:46:59 | [diff] [blame] | 7 | #include "base/files/file_util.h" |
[email protected] | 32efb04 | 2013-03-29 00:23:21 | [diff] [blame] | 8 | #include "base/path_service.h" |
| 9 | |
| 10 | namespace extensions { |
| 11 | |
| 12 | bool PathProvider(int key, base::FilePath* result) { |
[email protected] | 03cf96e7 | 2014-03-18 19:04:21 | [diff] [blame] | 13 | if (key != DIR_TEST_DATA) |
| 14 | return false; |
| 15 | base::FilePath cur; |
| 16 | if (!PathService::Get(base::DIR_SOURCE_ROOT, &cur)) |
| 17 | return false; |
| 18 | cur = cur.Append(FILE_PATH_LITERAL("extensions")); |
| 19 | cur = cur.Append(FILE_PATH_LITERAL("test")); |
| 20 | cur = cur.Append(FILE_PATH_LITERAL("data")); |
| 21 | if (!base::PathExists(cur)) // we don't want to create this |
| 22 | return false; |
| 23 | *result = cur; |
| 24 | return true; |
[email protected] | 32efb04 | 2013-03-29 00:23:21 | [diff] [blame] | 25 | } |
| 26 | |
| 27 | // This cannot be done as a static initializer sadly since Visual Studio will |
| 28 | // eliminate this object file if there is no direct entry point into it. |
| 29 | void RegisterPathProvider() { |
| 30 | PathService::RegisterProvider(PathProvider, PATH_START, PATH_END); |
| 31 | } |
| 32 | |
| 33 | } // namespace extensions |