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

Unified Diff: mojo/public/bindings/generators/mojom.py

Issue 66353002: Mojo: RemotePtr<S> + bindings changes for Peer attribute. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move forward declarations to interface_declaration Created 7 years, 1 month 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: mojo/public/bindings/generators/mojom.py
diff --git a/mojo/public/bindings/generators/mojom.py b/mojo/public/bindings/generators/mojom.py
index 4f789b7cee4ce9fd859139de6e5d98b491a0211c..b30fc1ecd66d704c8ac542052e6b427f1495ab02 100644
--- a/mojo/public/bindings/generators/mojom.py
+++ b/mojo/public/bindings/generators/mojom.py
@@ -106,6 +106,7 @@ class Method(object):
class Interface(object):
def __init__(self, name = None):
self.name = name
+ self.attributes = {}
self.methods = []
def AddMethod(self, name, ordinal = None):

Powered by Google App Engine
This is Rietveld 408576698