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

Unified Diff: apps/moterm/moterm_view.h

Issue 1682113003: Mojo C++ bindings: Generate InterfaceHandle<> instead of InterfacePtr<>. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebase ontop of master, address trung's comments 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 | « apps/moterm/moterm_app.cc ('k') | apps/moterm/moterm_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apps/moterm/moterm_view.h
diff --git a/apps/moterm/moterm_view.h b/apps/moterm/moterm_view.h
index 06c319b8481d3aacd0484d8d107b4fcd903e832a..8907cc77c67244b76186d3629ab365bebefa9881 100644
--- a/apps/moterm/moterm_view.h
+++ b/apps/moterm/moterm_view.h
@@ -70,9 +70,10 @@ class MotermView : public mojo::ui::GaneshView,
void Connect(mojo::InterfaceRequest<mojo::files::File> terminal_file,
bool force,
const ConnectCallback& callback) override;
- void ConnectToClient(mojo::terminal::TerminalClientPtr terminal_client,
- bool force,
- const ConnectToClientCallback& callback) override;
+ void ConnectToClient(
+ mojo::InterfaceHandle<mojo::terminal::TerminalClient> terminal_client,
+ bool force,
+ const ConnectToClientCallback& callback) override;
void GetSize(const GetSizeCallback& callback) override;
void SetSize(uint32_t rows,
uint32_t columns,
« no previous file with comments | « apps/moterm/moterm_app.cc ('k') | apps/moterm/moterm_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698