Home | History | Annotate | Download | only in webrtc

Lines Matching refs:method

35 #define WEBRTC_STUB(method, args) \
36 virtual int method args OVERRIDE { return 0; }
38 #define WEBRTC_STUB_CONST(method, args) \
39 virtual int method args const OVERRIDE { return 0; }
41 #define WEBRTC_BOOL_STUB(method, args) \
42 virtual bool method args OVERRIDE { return true; }
44 #define WEBRTC_VOID_STUB(method, args) \
45 virtual void method args OVERRIDE {}
47 #define WEBRTC_FUNC(method, args) \
48 virtual int method args OVERRIDE
50 #define WEBRTC_FUNC_CONST(method, args) \
51 virtual int method args const OVERRIDE
53 #define WEBRTC_BOOL_FUNC(method, args) \
54 virtual bool method args OVERRIDE
56 #define WEBRTC_VOID_FUNC(method, args) \
57 virtual void method args OVERRIDE