summaryrefslogtreecommitdiffstats
path: root/chromium/mojo/public/cpp/application/lib/service_connector.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/mojo/public/cpp/application/lib/service_connector.cc')
-rw-r--r--chromium/mojo/public/cpp/application/lib/service_connector.cc18
1 files changed, 18 insertions, 0 deletions
diff --git a/chromium/mojo/public/cpp/application/lib/service_connector.cc b/chromium/mojo/public/cpp/application/lib/service_connector.cc
new file mode 100644
index 00000000000..5cc4421b7aa
--- /dev/null
+++ b/chromium/mojo/public/cpp/application/lib/service_connector.cc
@@ -0,0 +1,18 @@
+// Copyright 2014 The Chromium 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 "mojo/public/cpp/application/lib/service_connector.h"
+
+namespace mojo {
+namespace internal {
+
+ServiceConnectorBase::ServiceConnectorBase(const std::string& name)
+ : name_(name),
+ registry_(NULL) {
+}
+
+ServiceConnectorBase::~ServiceConnectorBase() {}
+
+} // namespace internal
+} // namespace mojo