Try to work around that clang/win bug in another file.
[chromium-blink-merge.git] / components / proximity_auth / proximity_monitor_observer.h
blobd8c87fb99fb618ef506c749e063eab14ff4801b6
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_PROXIMITY_AUTH_PROXIMITY_MONITOR_OBSERVER_H
6 #define COMPONENTS_PROXIMITY_AUTH_PROXIMITY_MONITOR_OBSERVER_H
8 namespace proximity_auth {
10 // The observer interface for the ProximityMonitor class.
11 class ProximityMonitorObserver {
12 public:
13 virtual ~ProximityMonitorObserver() {}
15 // Callback to be called when the proximity state of the remote device
16 // changes.
17 virtual void OnProximityStateChanged() = 0;
20 } // namespace proximity_auth
22 #endif // COMPONENTS_PROXIMITY_AUTH_PROXIMITY_MONITOR_OBSERVER_H