Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(222)

Unified Diff: dbus/values_util.h

Issue 11364033: dbus: Make it possible to build as shared_library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CHROME_DBUS_EXPORT Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« dbus/dbus_export.h ('K') | « dbus/string_util.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dbus/values_util.h
diff --git a/dbus/values_util.h b/dbus/values_util.h
index f710fa3758a3107e87cd4b45a59e0b2fadaba35f..e34c7a039db31e611fccad4be2285e07a4a3423c 100644
--- a/dbus/values_util.h
+++ b/dbus/values_util.h
@@ -5,6 +5,8 @@
#ifndef DBUS_VALUES_UTIL_H_
#define DBUS_VALUES_UTIL_H_
+#include "dbus/dbus_export.h"
+
namespace base {
class Value;
}
@@ -18,14 +20,16 @@ class MessageWriter;
// Returns NULL if an error occurs.
// Note: Integer values larger than int32 (including uint32) are converted to
// double. Non-string diciontary keys are converted to strings.
-base::Value* PopDataAsValue(MessageReader* reader);
+CHROME_DBUS_EXPORT base::Value* PopDataAsValue(MessageReader* reader);
// Appends a basic type value to |writer|.
-void AppendBasicTypeValueData(MessageWriter* writer, const base::Value& value);
+CHROME_DBUS_EXPORT void AppendBasicTypeValueData(MessageWriter* writer,
+ const base::Value& value);
// Appends a basic type value to |writer| as a variant.
-void AppendBasicTypeValueDataAsVariant(MessageWriter* writer,
- const base::Value& value);
+CHROME_DBUS_EXPORT void AppendBasicTypeValueDataAsVariant(
+ MessageWriter* writer,
+ const base::Value& value);
} // namespace dbus
« dbus/dbus_export.h ('K') | « dbus/string_util.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698