| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "base/port.h" | 5 #include "base/port.h" |
| 6 #include "chrome/browser/sync/util/path_helpers.h" | 6 #include "chrome/browser/sync/util/path_helpers.h" |
| 7 | 7 |
| 8 #ifndef OS_MACOSX | 8 #ifndef OS_MACOSX |
| 9 #error Compile this file on Mac only. | 9 #error Compile this file on Mac only. |
| 10 #endif | 10 #endif |
| 11 | |
| 12 PathString GetFullPath(const PathString& path) { | |
| 13 // TODO(sync): Not sure what the base of the relative path should be on | |
| 14 // OS X. | |
| 15 return path; | |
| 16 } | |
| 17 | |
| OLD | NEW |