[shill] Back property storage in Service objects with Entry objects

Much of Shill Service state is persisted to disk, by creating an Entry
in a Profile.  We should store this info just once, so that we don't
have to worry about keeping multiple data stores in sync.  This is a
first step in that direction.

BUG=chromium-os:17436
TEST=unit tests

Change-Id: If94db2a38a7d79c56e2c746b2f069cfd7ab4bf65
Reviewed-on: http://gerrit.chromium.org/gerrit/3876
Tested-by: Chris Masone <cmasone@chromium.org>
Reviewed-by: Darin Petkov <petkov@chromium.org>
diff --git a/mock_profile.cc b/mock_profile.cc
new file mode 100644
index 0000000..dd2ce98
--- /dev/null
+++ b/mock_profile.cc
@@ -0,0 +1,27 @@
+// 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/mock_profile.h"
+
+#include <string>
+
+#include <base/memory/ref_counted.h>
+#include <base/stringprintf.h>
+#include <gmock/gmock.h>
+
+#include "shill/refptr_types.h"
+
+namespace shill {
+
+class ControlInterface;
+class GLib;
+class Manager;
+
+MockProfile::MockProfile(ControlInterface *control_interface, GLib *glib)
+    : Profile(control_interface, glib) {
+}
+
+MockProfile::~MockProfile() {}
+
+}  // namespace shill