Use hidl_string conversion constructor as test. am: 54813ed7c6

am: ec0bcf0a92

Change-Id: I8ffd31d5c677cc11a117e0bbc8668c70afc2cb16
This commit is contained in:
Steven Moreland
2016-10-25 03:42:27 +00:00
committed by android-build-merger

View File

@@ -68,10 +68,7 @@ Return<void> Foo::doStuffAndReturnAString(
doStuffAndReturnAString_cb _cb) {
ALOGI("SERVER(Foo) doStuffAndReturnAString");
hidl_string s;
s = "Hello, world";
_cb(s);
_cb("Hello, world");
return Void();
}