| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 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 "sql/test/paths.h" | 5 #include "sql/test/paths.h" |
| 6 | 6 |
| 7 #include "base/file_util.h" | |
| 8 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/files/file_util.h" |
| 9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 10 | 10 |
| 11 namespace sql { | 11 namespace sql { |
| 12 namespace test { | 12 namespace test { |
| 13 | 13 |
| 14 namespace { | 14 namespace { |
| 15 | 15 |
| 16 bool PathProvider(int key, base::FilePath* result) { | 16 bool PathProvider(int key, base::FilePath* result) { |
| 17 base::FilePath cur; | 17 base::FilePath cur; |
| 18 switch (key) { | 18 switch (key) { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 39 } // namespace | 39 } // namespace |
| 40 | 40 |
| 41 // 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 |
| 42 // 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. |
| 43 void RegisterPathProvider() { | 43 void RegisterPathProvider() { |
| 44 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END); | 44 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END); |
| 45 } | 45 } |
| 46 | 46 |
| 47 } // namespace test | 47 } // namespace test |
| 48 } // namespace sql | 48 } // namespace sql |
| OLD | NEW |