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

Unified Diff: examples/bank_app/bank.mojom

Issue 1261403003: Initial skeletal implementation of the PrincipalService. Also, use the Login()/GetUserBlessing() (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: indentation Created 5 years, 4 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
Index: examples/bank_app/bank.mojom
diff --git a/examples/browser/browser_host.mojom b/examples/bank_app/bank.mojom
similarity index 64%
copy from examples/browser/browser_host.mojom
copy to examples/bank_app/bank.mojom
index 04d789b186681ba873bd874f59999a864f9022cc..e93481b1877522f2e51441fbdcb0736775744c61 100644
--- a/examples/browser/browser_host.mojom
+++ b/examples/bank_app/bank.mojom
@@ -4,7 +4,8 @@
module mojo.examples;
-interface BrowserHost {
- // Performs a navigation
- NavigateTo(string url);
+interface Bank {
+ Deposit(int32 dollars);
+ Withdraw(int32 dollars);
+ GetBalance() => (int32 dollars);
};

Powered by Google App Engine
This is Rietveld 408576698