Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4f790d31 authored by Zach Johnson's avatar Zach Johnson
Browse files

Add IFTTT checks to some module surfaces

Help ensure corresponding changes if we add API surfaces.

Bug: 156086402
Tag: #gd-refactor
Test: cert/run --host
Change-Id: I9cb7faf8eeaa273d75277f29e3808f75dfd450f2
parent efdc3869
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -56,6 +56,7 @@ class HciHalCallbacks {
// Abstraction Layer (HAL). Dealing only in HCI packets and events simplifies
// the stack and abstracts away power management, initialization, and other
// implementation-specific details related to the hardware.
// LINT.IfChange
class HciHal : public ::bluetooth::Module {
 public:
  static const ModuleFactory Factory;
@@ -88,6 +89,7 @@ class HciHal : public ::bluetooth::Module {
  // Packets must be processed in order.
  virtual void sendScoData(HciPacket data) = 0;
};
// LINT.ThenChange(fuzz/fuzz_hci_hal.h)

}  // namespace hal
}  // namespace bluetooth
+2 −0
Original line number Diff line number Diff line
@@ -39,6 +39,7 @@ namespace bluetooth {
namespace hci {

class HciLayer : public Module, public CommandInterface<CommandPacketBuilder> {
  // LINT.IfChange
 public:
  HciLayer();
  virtual ~HciLayer();
@@ -88,6 +89,7 @@ class HciLayer : public Module, public CommandInterface<CommandPacketBuilder> {
  static const ModuleFactory Factory;

 protected:
  // Lint.ThenChange(fuzz/fuzz_hci_layer.h)
  void ListDependencies(ModuleList* list) override;

  void Start() override;