summaryrefslogtreecommitdiffstats
path: root/base/value_conversions.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/value_conversions.h')
-rw-r--r--base/value_conversions.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/base/value_conversions.h b/base/value_conversions.h
new file mode 100644
index 0000000..9678fc1
--- /dev/null
+++ b/base/value_conversions.h
@@ -0,0 +1,23 @@
+// Copyright (c) 2011 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_VALUE_CONVERSIONS_H_
+#define BASE_VALUE_CONVERSIONS_H_
+#pragma once
+
+// This file contains methods to convert a |FilePath| to a |Value| and back.
+
+class FilePath;
+class StringValue;
+class Value;
+
+namespace base {
+
+// The caller takes ownership of the returned value.
+StringValue* CreateFilePathValue(const FilePath& in_value);
+bool GetValueAsFilePath(const Value& value, FilePath* file_path);
+
+} // namespace
+
+#endif // BASE_VALUE_CONVERSIONS_H_