Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

Unified Diff: services/ui/view_manager/view_tree_host_impl.cc

Issue 1415493003: mozart: Initial commit of the view manager. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/ui/view_manager/view_tree_host_impl.h ('k') | services/ui/view_manager/view_tree_state.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/view_manager/view_tree_host_impl.cc
diff --git a/services/ui/view_manager/view_tree_host_impl.cc b/services/ui/view_manager/view_tree_host_impl.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e970a695990ef640d9b2643231ee09b47959cbaf
--- /dev/null
+++ b/services/ui/view_manager/view_tree_host_impl.cc
@@ -0,0 +1,47 @@
+// Copyright 2015 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/bind.h"
+#include "base/bind_helpers.h"
+#include "services/ui/view_manager/view_tree_host_impl.h"
+
+namespace view_manager {
+
+ViewTreeHostImpl::ViewTreeHostImpl(
+ ViewRegistry* registry,
+ ViewTreeState* state,
+ mojo::InterfaceRequest<mojo::ui::ViewTreeHost> view_tree_host_request)
+ : registry_(registry),
+ state_(state),
+ binding_(this, view_tree_host_request.Pass()) {}
+
+ViewTreeHostImpl::~ViewTreeHostImpl() {}
+
+void ViewTreeHostImpl::RequestLayout() {
+ registry_->RequestLayout(state_);
+}
+
+void ViewTreeHostImpl::SetRoot(uint32_t root_key,
+ mojo::ui::ViewTokenPtr root_view_token) {
+ registry_->SetRoot(state_, root_key, root_view_token.Pass());
+}
+
+void ViewTreeHostImpl::ResetRoot() {
+ registry_->ResetRoot(state_);
+}
+
+static void RunLayoutRootCallback(
+ const ViewTreeHostImpl::LayoutRootCallback& callback,
+ mojo::ui::ViewLayoutInfoPtr info) {
+ callback.Run(info.Pass());
+}
+
+void ViewTreeHostImpl::LayoutRoot(
+ mojo::ui::ViewLayoutParamsPtr root_layout_params,
+ const LayoutRootCallback& callback) {
+ registry_->LayoutRoot(state_, root_layout_params.Pass(),
+ base::Bind(&RunLayoutRootCallback, callback));
+}
+
+} // namespace view_manager
« no previous file with comments | « services/ui/view_manager/view_tree_host_impl.h ('k') | services/ui/view_manager/view_tree_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698