| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/gfx/gfx_paths.h" | 5 #include "sql/test/paths.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | |
| 8 #include "base/file_util.h" | 7 #include "base/file_util.h" |
| 9 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 10 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 11 | 10 |
| 12 namespace gfx { | 11 namespace sql { |
| 12 namespace test { |
| 13 |
| 14 namespace { |
| 13 | 15 |
| 14 bool PathProvider(int key, base::FilePath* result) { | 16 bool PathProvider(int key, base::FilePath* result) { |
| 15 base::FilePath cur; | 17 base::FilePath cur; |
| 16 switch (key) { | 18 switch (key) { |
| 17 // The following are only valid in the development environment, and | 19 // The following are only valid in the development environment, and |
| 18 // will fail if executed from an installed executable (because the | 20 // will fail if executed from an installed executable (because the |
| 19 // generated path won't exist). | 21 // generated path won't exist). |
| 20 case DIR_TEST_DATA: | 22 case DIR_TEST_DATA: |
| 21 if (!PathService::Get(base::DIR_SOURCE_ROOT, &cur)) | 23 if (!PathService::Get(base::DIR_SOURCE_ROOT, &cur)) |
| 22 return false; | 24 return false; |
| 23 cur = cur.Append(FILE_PATH_LITERAL("ui")); | 25 cur = cur.Append(FILE_PATH_LITERAL("sql")); |
| 24 cur = cur.Append(FILE_PATH_LITERAL("gfx")); | |
| 25 cur = cur.Append(FILE_PATH_LITERAL("test")); | 26 cur = cur.Append(FILE_PATH_LITERAL("test")); |
| 26 cur = cur.Append(FILE_PATH_LITERAL("data")); | 27 cur = cur.Append(FILE_PATH_LITERAL("data")); |
| 27 if (!base::PathExists(cur)) // we don't want to create this | 28 if (!base::PathExists(cur)) // we don't want to create this |
| 28 return false; | 29 return false; |
| 29 break; | 30 break; |
| 30 default: | 31 default: |
| 31 return false; | 32 return false; |
| 32 } | 33 } |
| 33 | 34 |
| 34 *result = cur; | 35 *result = cur; |
| 35 return true; | 36 return true; |
| 36 } | 37 } |
| 37 | 38 |
| 39 } // namespace |
| 40 |
| 38 // This cannot be done as a static initializer sadly since Visual Studio will | 41 // This cannot be done as a static initializer sadly since Visual Studio will |
| 39 // eliminate this object file if there is no direct entry point into it. | 42 // eliminate this object file if there is no direct entry point into it. |
| 40 void RegisterPathProvider() { | 43 void RegisterPathProvider() { |
| 41 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END); | 44 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END); |
| 42 } | 45 } |
| 43 | 46 |
| 44 } // namespace gfx | 47 } // namespace test |
| 48 } // namespace sql |
| OLD | NEW |