shill: Add WiMAX device and service class.

This CL adds the basic skeleton classes for WiMAX support.

BUG=chrome-os-partner:9600
TEST=Build and run unit tests.

Change-Id: I0a8770cc8c1100cd978067168fcf29d4118cab99
Reviewed-on: https://gerrit.chromium.org/gerrit/22347
Reviewed-by: Darin Petkov <petkov@chromium.org>
Reviewed-by: Paul Stewart <pstew@chromium.org>
Tested-by: Ben Chan <benchan@chromium.org>
Commit-Ready: Ben Chan <benchan@chromium.org>
diff --git a/wimax_service.h b/wimax_service.h
new file mode 100644
index 0000000..334a81a
--- /dev/null
+++ b/wimax_service.h
@@ -0,0 +1,35 @@
+// Copyright (c) 2012 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.
+
+#ifndef SHILL_WIMAX_SERVICE_H_
+#define SHILL_WIMAX_SERVICE_H_
+
+#include "shill/refptr_types.h"
+#include "shill/service.h"
+
+namespace shill {
+
+class WiMaxService : public Service {
+ public:
+  WiMaxService(ControlInterface *control,
+               EventDispatcher *dispatcher,
+               Metrics *metrics,
+               Manager *manager,
+               const WiMaxRefPtr &wimax);
+  virtual ~WiMaxService();
+
+  // Inherited from Service.
+  virtual bool TechnologyIs(const Technology::Identifier type) const;
+  virtual void Connect(Error *error);
+  virtual void Disconnect(Error *error);
+
+ private:
+  WiMaxRefPtr wimax_;
+
+  DISALLOW_COPY_AND_ASSIGN(WiMaxService);
+};
+
+}  // namespace shill
+
+#endif  // SHILL_WIMAX_SERVICE_H_