Generate notifySyspropsChanged().

notifySyspropsChanged() can be used to notify
any HIDL interface of the fact that a system
property has changed, upon which the process
hosting the interface can take action.

The current implementation calls
report_sysprop_change(), which is a libcutils
function that will call a set of previously
registered callbacks.

One such callback is used for atrace, where the
enabled trace categories are stored in system
properties, and we need to notify running
services when those properties have changed.
Without notifying them, we'd need to have a
process to be restarted *while* a trace is
already running, which in the best case is
clumsy, and in the worst case totally
impractical.

(We may want to move this out of libcutils at
some point, but that is out of the scope of
this CL).

Bug: 31262344
Test: mma, hidl_test, hidl_test_java, systrace works without restart
Change-Id: I7b368e2a89ac9947cd0f8c4311df6c31d3ef4a8a
diff --git a/Interface.h b/Interface.h
index f1f10d5..5da326c 100644
--- a/Interface.h
+++ b/Interface.h
@@ -104,6 +104,7 @@
     std::vector<Method *> mReservedMethods;
     mutable bool mIsJavaCompatibleInProgress;
     Method *createDescriptorChainMethod() const;
+    Method *createSyspropsChangedMethod() const;
 
     DISALLOW_COPY_AND_ASSIGN(Interface);
 };