OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Defines base::PathProviderAndroid which replaces base::PathProviderPosix for | 5 // Defines base::PathProviderAndroid which replaces base::PathProviderPosix for |
6 // Android in base/path_service.cc. | 6 // Android in base/path_service.cc. |
7 | 7 |
8 #include <unistd.h> | 8 #include <unistd.h> |
9 | 9 |
10 #include "base/android/jni_android.h" | 10 #include "base/android/jni_android.h" |
11 #include "base/android/path_utils.h" | 11 #include "base/android/path_utils.h" |
12 #include "base/base_paths.h" | 12 #include "base/base_paths.h" |
13 #include "base/file_util.h" | 13 #include "base/file_util.h" |
14 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
15 #include "base/logging.h" | 15 #include "base/logging.h" |
16 #include "base/process_util.h" | 16 #include "base/process/process_metrics.h" |
17 | 17 |
18 namespace base { | 18 namespace base { |
19 | 19 |
20 bool PathProviderAndroid(int key, FilePath* result) { | 20 bool PathProviderAndroid(int key, FilePath* result) { |
21 switch (key) { | 21 switch (key) { |
22 case base::FILE_EXE: { | 22 case base::FILE_EXE: { |
23 char bin_dir[PATH_MAX + 1]; | 23 char bin_dir[PATH_MAX + 1]; |
24 int bin_dir_size = readlink(kProcSelfExe, bin_dir, PATH_MAX); | 24 int bin_dir_size = readlink(kProcSelfExe, bin_dir, PATH_MAX); |
25 if (bin_dir_size < 0 || bin_dir_size > PATH_MAX) { | 25 if (bin_dir_size < 0 || bin_dir_size > PATH_MAX) { |
26 NOTREACHED() << "Unable to resolve " << kProcSelfExe << "."; | 26 NOTREACHED() << "Unable to resolve " << kProcSelfExe << "."; |
(...skipping 27 matching lines...) Expand all Loading... |
54 return base::android::GetExternalStorageDirectory(result); | 54 return base::android::GetExternalStorageDirectory(result); |
55 default: | 55 default: |
56 // Note: the path system expects this function to override the default | 56 // Note: the path system expects this function to override the default |
57 // behavior. So no need to log an error if we don't support a given | 57 // behavior. So no need to log an error if we don't support a given |
58 // path. The system will just use the default. | 58 // path. The system will just use the default. |
59 return false; | 59 return false; |
60 } | 60 } |
61 } | 61 } |
62 | 62 |
63 } // namespace base | 63 } // namespace base |
OLD | NEW |