[shill] Wire shill to dbus

Refactor necessary classes into their own headers and such as well.

BUG=chromium-os:15578
TEST=unit tests, shill --foreground on device

Change-Id: Ib9c5a0e9dab779ecc44c1d0144035f5a09e1086e
Reviewed-on: http://gerrit.chromium.org/gerrit/1307
Reviewed-by: Chris Masone <cmasone@chromium.org>
Tested-by: Chris Masone <cmasone@chromium.org>
diff --git a/service_dbus_adaptor.cc b/service_dbus_adaptor.cc
new file mode 100644
index 0000000..cb7e27d
--- /dev/null
+++ b/service_dbus_adaptor.cc
@@ -0,0 +1,63 @@
+// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "shill/service_dbus_adaptor.h"
+
+#include <map>
+#include <string>
+
+using std::map;
+using std::string;
+
+namespace shill {
+
+// TODO(cmasone): Figure out if we should be trying to own sub-interfaces.
+// static
+const char ServiceDBusAdaptor::kInterfaceName[] = SHILL_INTERFACE;
+// ".Service";
+// static
+const char ServiceDBusAdaptor::kPath[] = SHILL_PATH "/Service";
+
+ServiceDBusAdaptor::ServiceDBusAdaptor(DBus::Connection& conn, Service *service)
+    : DBusAdaptor(conn, kPath),
+      service_(service) {}
+ServiceDBusAdaptor::~ServiceDBusAdaptor() {}
+
+void ServiceDBusAdaptor::UpdateConnected() {}
+
+map<string, ::DBus::Variant> ServiceDBusAdaptor::GetProperties(
+    ::DBus::Error &error) {
+  return map<string, ::DBus::Variant>();
+}
+
+void ServiceDBusAdaptor::SetProperty(const string& ,
+                                     const ::DBus::Variant& ,
+                                     ::DBus::Error &error) {
+}
+
+void ServiceDBusAdaptor::ClearProperty(const string& , ::DBus::Error &error) {
+}
+
+void ServiceDBusAdaptor::Connect(::DBus::Error &error) {
+}
+
+void ServiceDBusAdaptor::Disconnect(::DBus::Error &error) {
+}
+
+void ServiceDBusAdaptor::Remove(::DBus::Error &error) {
+}
+
+void ServiceDBusAdaptor::MoveBefore(const ::DBus::Path& ,
+                                    ::DBus::Error &error) {
+}
+
+void ServiceDBusAdaptor::MoveAfter(const ::DBus::Path& ,
+                                   ::DBus::Error &error) {
+}
+
+void ServiceDBusAdaptor::ActivateCellularModem(const string& ,
+                                               ::DBus::Error &error) {
+}
+
+}  // namespace shill