Index: mojo/examples/aura_demo/view_manager_init.cc |
diff --git a/mojo/examples/aura_demo/view_manager_init.cc b/mojo/examples/aura_demo/view_manager_init.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..fd90e1c7ad4447230584ffc2bafd4bda6be7e42f |
--- /dev/null |
+++ b/mojo/examples/aura_demo/view_manager_init.cc |
@@ -0,0 +1,46 @@ |
+// 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 "base/basictypes.h" |
+#include "base/bind.h" |
+#include "mojo/public/cpp/application/application.h" |
+#include "mojo/services/public/interfaces/view_manager/view_manager.mojom.h" |
+ |
+namespace mojo { |
+namespace examples { |
+ |
+// ViewManagerInit is responsible for establishing the initial connection to |
+// the view manager. When established it loads |mojo_aura_demo|. |
+class ViewManagerInit : public Application { |
+ public: |
+ ViewManagerInit() {} |
+ virtual ~ViewManagerInit() {} |
+ |
+ virtual void Initialize() OVERRIDE { |
+ ConnectTo("mojo:mojo_view_manager", &view_manager_init_); |
+ view_manager_init_->Connect("mojo:mojo_aura_demo", |
+ base::Bind(&ViewManagerInit::DidConnect, |
+ base::Unretained(this))); |
+ } |
+ |
+ private: |
+ void DidConnect(bool result) { |
+ DCHECK(result); |
+ VLOG(1) << "ViewManagerInit::DidConnection result=" << result; |
+ } |
+ |
+ view_manager::IViewManagerInitPtr view_manager_init_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(ViewManagerInit); |
+}; |
+ |
+} // namespace examples |
+ |
+// static |
+Application* Application::Create() { |
+ return new examples::ViewManagerInit(); |
+} |
+ |
+} // namespace mojo |
+ |