shill: wimax: Implement WiMAX Manager and Device proxies.

Also, add a WiMax logging scope.

BUG=chrome-os-partner:9697
TEST=build and run unit tests

Change-Id: I8516ff2b55e54feb5fcdab089d0fe279551b4317
Reviewed-on: https://gerrit.chromium.org/gerrit/22695
Commit-Ready: Darin Petkov <petkov@chromium.org>
Tested-by: Darin Petkov <petkov@chromium.org>
Reviewed-by: Ben Chan <benchan@chromium.org>
diff --git a/mock_wimax_manager_proxy.h b/mock_wimax_manager_proxy.h
new file mode 100644
index 0000000..ad9919c
--- /dev/null
+++ b/mock_wimax_manager_proxy.h
@@ -0,0 +1,30 @@
+// 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_MOCK_WIMAX_MANAGER_PROXY_H_
+#define SHILL_MOCK_WIMAX_MANAGER_PROXY_H_
+
+#include <vector>
+
+#include <base/basictypes.h>
+#include <gmock/gmock.h>
+
+#include "shill/wimax_manager_proxy_interface.h"
+
+namespace shill {
+
+class MockWiMaxManagerProxy : public WiMaxManagerProxyInterface {
+ public:
+  MockWiMaxManagerProxy();
+  virtual ~MockWiMaxManagerProxy();
+
+  MOCK_METHOD1(Devices, std::vector<RpcIdentifier>(Error *error));
+
+ private:
+  DISALLOW_COPY_AND_ASSIGN(MockWiMaxManagerProxy);
+};
+
+}  // namespace shill
+
+#endif  // SHILL_MOCK_WIMAX_MANAGER_PROXY_H_