Lines Matching refs:Observer
92 class Observer {
94 virtual ~Observer() = default;
118 // Set the certificate observer to the passed instance. To remove the
119 // observer, pass a nullptr. The |observer| instance must be valid while this
121 void SetObserver(Observer* observer) { observer_ = observer; }
148 // certificate check is passed to the observer, if any. Returns true on
154 // Notifies the observer, if any, of a certificate checking.
167 // The observer called whenever a certificate is checked, if not null.
168 Observer* observer_{nullptr};