summaryrefslogtreecommitdiffstats
path: root/base/mac_util.h
diff options
context:
space:
mode:
authoravi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-09 14:58:13 +0000
committeravi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-09 14:58:13 +0000
commite2ac7000e32f351ec6026060c489514f397dcb9d (patch)
treed5b3e90db5bf516f04b5b143f68ddc22aca8cfc9 /base/mac_util.h
parent31db0c695037f0e0a0492ee5eb7564ae85357b52 (diff)
downloadchromium_src-e2ac7000e32f351ec6026060c489514f397dcb9d.zip
chromium_src-e2ac7000e32f351ec6026060c489514f397dcb9d.tar.gz
chromium_src-e2ac7000e32f351ec6026060c489514f397dcb9d.tar.bz2
Cleanup of the path service. (With some extra utilities to be used later.)
Review URL: http://codereview.chromium.org/13260 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6584 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/mac_util.h')
-rw-r--r--base/mac_util.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/base/mac_util.h b/base/mac_util.h
new file mode 100644
index 0000000..47ec6b6
--- /dev/null
+++ b/base/mac_util.h
@@ -0,0 +1,19 @@
+// Copyright (c) 2008 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef BASE_MAC_UTIL_H_
+#define BASE_MAC_UTIL_H_
+
+struct FSRef;
+
+#include <string>
+
+namespace mac_util {
+
+std::string PathFromFSRef(const FSRef& ref);
+bool FSRefFromPath(const std::string& path, FSRef* ref);
+
+} // namespace mac_util
+
+#endif // BASE_MAC_UTIL_H_