shill: Start moving tehnology-specific functionality to capability delegates.

This basic patch demonstrates the intent to move CDMA/GSM-specific functionality
into capability delegates. This should reduce the conditional code in the
Cellular class and make it more readable and easier to maintain.

BUG=chromium-os:18735
TEST=unit tests

Change-Id: I80ee8682ff34810cf4a723119274450de4ae95a9
Reviewed-on: https://gerrit.chromium.org/gerrit/10775
Commit-Ready: Darin Petkov <petkov@chromium.org>
Reviewed-by: Darin Petkov <petkov@chromium.org>
Tested-by: Darin Petkov <petkov@chromium.org>
diff --git a/cellular_capability_gsm.h b/cellular_capability_gsm.h
new file mode 100644
index 0000000..72efd4a
--- /dev/null
+++ b/cellular_capability_gsm.h
@@ -0,0 +1,25 @@
+// 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.
+
+#ifndef SHILL_CELLULAR_CAPABILITY_GSM_
+#define SHILL_CELLULAR_CAPABILITY_GSM_
+
+#include "shill/cellular_capability.h"
+
+namespace shill {
+
+class CellularCapabilityGSM : public CellularCapability {
+ public:
+  CellularCapabilityGSM(Cellular *cellular);
+
+  // Inherited from CellularCapability;
+  virtual void InitProxies();
+
+ private:
+  DISALLOW_COPY_AND_ASSIGN(CellularCapabilityGSM);
+};
+
+}  // namespace shill
+
+#endif  // SHILL_CELLULAR_CAPABILITY_GSM_