OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "chromeos/network/network_sms_handler.h" | 5 #include "chromeos/network/network_sms_handler.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <deque> | 8 #include <deque> |
9 #include <string> | |
10 #include <vector> | 9 #include <vector> |
11 | 10 |
12 #include "base/bind.h" | 11 #include "base/bind.h" |
13 #include "base/values.h" | 12 #include "base/values.h" |
14 #include "chromeos/dbus/dbus_thread_manager.h" | 13 #include "chromeos/dbus/dbus_thread_manager.h" |
15 #include "chromeos/dbus/shill_device_client.h" | 14 #include "chromeos/dbus/shill_device_client.h" |
16 #include "chromeos/dbus/shill_manager_client.h" | 15 #include "chromeos/dbus/shill_manager_client.h" |
17 #include "chromeos/dbus/gsm_sms_client.h" | 16 #include "chromeos/dbus/gsm_sms_client.h" |
18 #include "chromeos/dbus/modem_messaging_client.h" | 17 #include "chromeos/dbus/modem_messaging_client.h" |
19 #include "chromeos/dbus/sms_client.h" | 18 #include "chromeos/dbus/sms_client.h" |
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
476 new ModemManager1NetworkSmsDeviceHandler( | 475 new ModemManager1NetworkSmsDeviceHandler( |
477 this, service_name, object_path)); | 476 this, service_name, object_path)); |
478 } else { | 477 } else { |
479 device_handlers_.push_back( | 478 device_handlers_.push_back( |
480 new ModemManagerNetworkSmsDeviceHandler( | 479 new ModemManagerNetworkSmsDeviceHandler( |
481 this, service_name, object_path)); | 480 this, service_name, object_path)); |
482 } | 481 } |
483 } | 482 } |
484 | 483 |
485 } // namespace chromeos | 484 } // namespace chromeos |
OLD | NEW |