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

Unified Diff: third_party/WebKit/Source/bindings/scripts/idl_definitions.py

Issue 2272283002: idl_compiler: Remove __getstate__ and __setstate__ from IdlArgument (Closed)
Patch Set: Created 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/scripts/idl_definitions.py
diff --git a/third_party/WebKit/Source/bindings/scripts/idl_definitions.py b/third_party/WebKit/Source/bindings/scripts/idl_definitions.py
index 1428577ab8d75419bc87450e5b6505132108ffed..95006780d7a86c881725b4764acddda8bf4c3ade 100644
--- a/third_party/WebKit/Source/bindings/scripts/idl_definitions.py
+++ b/third_party/WebKit/Source/bindings/scripts/idl_definitions.py
@@ -668,14 +668,6 @@ class IdlArgument(TypedObject):
else:
raise ValueError('Unrecognized node class: %s' % child_class)
- def __getstate__(self):
- # FIXME: Return a picklable object which has enough information to
- # unpickle.
- return {}
-
- def __setstate__(self, state):
- pass
-
def accept(self, visitor):
visitor.visit_argument(self)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698