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

Unified Diff: examples/ui/spinning_cube/spinning_cube_app.cc

Issue 1679023006: Reify view ownership as a message pipe. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 10 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 | « examples/ui/spinning_cube/spinning_cube_app.h ('k') | examples/ui/spinning_cube/spinning_cube_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: examples/ui/spinning_cube/spinning_cube_app.cc
diff --git a/examples/ui/spinning_cube/spinning_cube_app.cc b/examples/ui/spinning_cube/spinning_cube_app.cc
index 79818ee24142e4975daec67fc3d161de277886f1..8c1d7975abdb15f8ea35077d1afb90d781734f99 100644
--- a/examples/ui/spinning_cube/spinning_cube_app.cc
+++ b/examples/ui/spinning_cube/spinning_cube_app.cc
@@ -12,13 +12,12 @@ SpinningCubeApp::SpinningCubeApp() {}
SpinningCubeApp::~SpinningCubeApp() {}
-bool SpinningCubeApp::CreateView(
+void SpinningCubeApp::CreateView(
const std::string& connection_url,
+ mojo::InterfaceRequest<mojo::ui::ViewOwner> view_owner_request,
mojo::InterfaceRequest<mojo::ServiceProvider> services,
- mojo::ServiceProviderPtr exposed_services,
- const mojo::ui::ViewProvider::CreateViewCallback& callback) {
- new SpinningCubeView(app_impl(), callback);
- return true;
+ mojo::ServiceProviderPtr exposed_services) {
+ new SpinningCubeView(app_impl(), view_owner_request.Pass());
}
} // namespace examples
« no previous file with comments | « examples/ui/spinning_cube/spinning_cube_app.h ('k') | examples/ui/spinning_cube/spinning_cube_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698