RESOLVED FIXED Bug 90409
nrwt: make the worker class stand alone with a cleaner interface
https://bugs.webkit.org/show_bug.cgi?id=90409
Summary nrwt: make the worker class stand alone with a cleaner interface
Dirk Pranke
Reported 2012-07-02 15:48:13 PDT
nrwt: make the worker class stand alone with a cleaner interface
Attachments
Patch (15.10 KB, patch)
2012-07-02 15:54 PDT, Dirk Pranke
ojan: review+
Dirk Pranke
Comment 1 2012-07-02 15:54:59 PDT
Ojan Vafai
Comment 2 2012-07-03 15:17:39 PDT
Comment on attachment 150491 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=150491&action=review > Tools/Scripts/webkitpy/layout_tests/controllers/worker.py:64 > def safe_init(self): I know you're not defining this method now, but this name doesn't match what it does to me. I would think "safe" would mean we can call it whenever we want, but it actually means we can only call it if the object doesn't need to be pickled. Should we just call this init_unpicklable_state? It's kinda verbose, but it's much more clear what it's doing.
Dirk Pranke
Comment 3 2012-07-03 15:19:06 PDT
(In reply to comment #2) > (From update of attachment 150491 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=150491&action=review > > > Tools/Scripts/webkitpy/layout_tests/controllers/worker.py:64 > > def safe_init(self): > > I know you're not defining this method now, but this name doesn't match what it does to me. I would think "safe" would mean we can call it whenever we want, but it actually means we can only call it if the object doesn't need to be pickled. Should we just call this init_unpicklable_state? It's kinda verbose, but it's much more clear what it's doing. It is a crappy name. In a later patch it gets renamed to "start" (and cleanup to "stop"), which I think is actually a clearer indication of its use.
Dirk Pranke
Comment 4 2012-07-03 16:32:39 PDT
Note You need to log in before you can comment on or make changes to this bug.