| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROMEOS_DBUS_FAKE_MODEM_MESSAGING_CLIENT_H_ | 5 #ifndef CHROMEOS_DBUS_FAKE_MODEM_MESSAGING_CLIENT_H_ |
| 6 #define CHROMEOS_DBUS_FAKE_MODEM_MESSAGING_CLIENT_H_ | 6 #define CHROMEOS_DBUS_FAKE_MODEM_MESSAGING_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | |
| 9 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
| 10 #include "chromeos/chromeos_export.h" | 10 #include "chromeos/chromeos_export.h" |
| 11 #include "chromeos/dbus/modem_messaging_client.h" | 11 #include "chromeos/dbus/modem_messaging_client.h" |
| 12 | 12 |
| 13 namespace chromeos { | 13 namespace chromeos { |
| 14 | 14 |
| 15 class CHROMEOS_EXPORT FakeModemMessagingClient : public ModemMessagingClient { | 15 class CHROMEOS_EXPORT FakeModemMessagingClient : public ModemMessagingClient { |
| 16 public: | 16 public: |
| 17 FakeModemMessagingClient(); | 17 FakeModemMessagingClient(); |
| 18 ~FakeModemMessagingClient() override; | 18 ~FakeModemMessagingClient() override; |
| 19 | 19 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 34 private: | 34 private: |
| 35 SmsReceivedHandler sms_received_handler_; | 35 SmsReceivedHandler sms_received_handler_; |
| 36 std::vector<dbus::ObjectPath> message_paths_; | 36 std::vector<dbus::ObjectPath> message_paths_; |
| 37 | 37 |
| 38 DISALLOW_COPY_AND_ASSIGN(FakeModemMessagingClient); | 38 DISALLOW_COPY_AND_ASSIGN(FakeModemMessagingClient); |
| 39 }; | 39 }; |
| 40 | 40 |
| 41 } // namespace chromeos | 41 } // namespace chromeos |
| 42 | 42 |
| 43 #endif // CHROMEOS_DBUS_FAKE_MODEM_MESSAGING_CLIENT_H_ | 43 #endif // CHROMEOS_DBUS_FAKE_MODEM_MESSAGING_CLIENT_H_ |
| OLD | NEW |