Home | History | Annotate | Download | only in dbus
      1 //
      2 //  Copyright 2016 The Android Open Source Project
      3 //
      4 //  Licensed under the Apache License, Version 2.0 (the "License");
      5 //  you may not use this file except in compliance with the License.
      6 //  You may obtain a copy of the License at:
      7 //
      8 //  http://www.apache.org/licenses/LICENSE-2.0
      9 //
     10 //  Unless required by applicable law or agreed to in writing, software
     11 //  distributed under the License is distributed on an "AS IS" BASIS,
     12 //  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13 //  See the License for the specific language governing permissions and
     14 //  limitations under the License.
     15 //
     16 #pragma once
     17 
     18 #include <base/threading/thread.h>
     19 #include "service/ipc/ipc_handler.h"
     20 #include "service/ipc/ipc_manager.h"
     21 
     22 namespace base {
     23 class SingleThreadTaskRunner;
     24 }  // namespace base
     25 
     26 namespace ipc {
     27 
     28 // Implements a DBus based IPCHandler
     29 class IPCHandlerDBus : public IPCHandler {
     30  public:
     31   IPCHandlerDBus(bluetooth::Adapter* adapter, IPCManager::Delegate* delegate);
     32   ~IPCHandlerDBus() override;
     33 
     34   void InitDbus();
     35 
     36   // IPCHandler overrides:
     37   bool Run() override;
     38   void Stop() override;
     39 
     40  private:
     41   base::Thread* dbus_thread_;
     42 
     43   IPCHandlerDBus() = default;
     44 
     45   DISALLOW_COPY_AND_ASSIGN(IPCHandlerDBus);
     46 };
     47 
     48 }  // namespace ipc
     49