| 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 #include "chrome/common/chrome_paths_internal.h" | 5 #include "chrome/common/chrome_paths_internal.h" |
| 6 | 6 |
| 7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 bool GetUserPicturesDirectory(FilePath* result) { | 41 bool GetUserPicturesDirectory(FilePath* result) { |
| 42 NOTIMPLEMENTED(); | 42 NOTIMPLEMENTED(); |
| 43 return false; | 43 return false; |
| 44 } | 44 } |
| 45 | 45 |
| 46 bool GetUserVideosDirectory(FilePath* result) { | 46 bool GetUserVideosDirectory(FilePath* result) { |
| 47 NOTIMPLEMENTED(); | 47 NOTIMPLEMENTED(); |
| 48 return false; | 48 return false; |
| 49 } | 49 } |
| 50 | 50 |
| 51 bool GetUserDesktop(FilePath* result) { | |
| 52 NOTIMPLEMENTED() << "Android doesn't support GetUserDesktop"; | |
| 53 return false; | |
| 54 } | |
| 55 | |
| 56 bool ProcessNeedsProfileDir(const std::string& process_type) { | 51 bool ProcessNeedsProfileDir(const std::string& process_type) { |
| 57 return true; | 52 return true; |
| 58 } | 53 } |
| 59 | 54 |
| 60 } // namespace chrome | 55 } // namespace chrome |
| OLD | NEW |