binder: Clang format the source code
[mech_eap.git] / wpa_supplicant / binder / supplicant.h
index b96f4e6..136b99b 100644 (file)
@@ -7,16 +7,16 @@
  * See README for more details.
  */
 
-#ifndef SUPPLICANT_H
-#define SUPPLICANT_H
+#ifndef WPA_SUPPLICANT_BINDER_SUPPLICANT_H
+#define WPA_SUPPLICANT_BINDER_SUPPLICANT_H
 
 #include "fi/w1/wpa_supplicant/BnSupplicant.h"
 #include "fi/w1/wpa_supplicant/IIface.h"
 #include "fi/w1/wpa_supplicant/ISupplicantCallbacks.h"
 
 extern "C" {
-#include "utils/includes.h"
 #include "utils/common.h"
+#include "utils/includes.h"
 #include "../wpa_supplicant_i.h"
 }
 
@@ -34,24 +34,22 @@ public:
        virtual ~Supplicant() = default;
 
        android::binder::Status CreateInterface(
-               const android::os::PersistableBundle &params,
-               android::sp<fi::w1::wpa_supplicant::IIface> *aidl_return)
-               override;
-       android::binder::Status RemoveInterface(
-               const std::string &ifname) override;
+           const android::os::PersistableBundle &params,
+           android::sp<fi::w1::wpa_supplicant::IIface> *aidl_return) override;
+       android::binder::Status
+       RemoveInterface(const std::string &ifname) override;
        android::binder::Status GetInterface(
-               const std::string &ifname,
-               android::sp<fi::w1::wpa_supplicant::IIface> *aidl_return)
-               override;
+           const std::string &ifname,
+           android::sp<fi::w1::wpa_supplicant::IIface> *aidl_return) override;
 
 private:
        /* Raw pointer to the global structure maintained by the core. */
        struct wpa_global *wpa_global_;
        /* All the callback objects registered by the clients. */
        std::vector<android::sp<fi::w1::wpa_supplicant::ISupplicantCallbacks>>
-               callbacks_;
+           callbacks_;
 };
 
 } /* namespace wpa_supplicant_binder */
 
-#endif /* SUPPLICANT_H */
+#endif /* WPA_SUPPLICANT_BINDER_SUPPLICANT_H */