Changeset 51742 in webkit


Ignore:
Timestamp:
Dec 6, 2009 5:09:32 PM (14 years ago)
Author:
abarth@webkit.org
Message:

2009-12-06 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

[bzt] Rename AbstractTryQueue to AbstractReviewQueue
https://bugs.webkit.org/show_bug.cgi?id=32202

  • Scripts/modules/commands/queues.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r51730 r51742  
     12009-12-06  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [bzt] Rename AbstractTryQueue to AbstractReviewQueue
     6        https://bugs.webkit.org/show_bug.cgi?id=32202
     7
     8        * Scripts/modules/commands/queues.py:
     9
    1102009-12-05  Adam Barth  <abarth@webkit.org>
    211
  • trunk/WebKitTools/Scripts/modules/commands/queues.py

    r51622 r51742  
    146146
    147147
    148 class AbstractTryQueue(AbstractQueue, PersistentPatchCollectionDelegate, LandingSequenceErrorHandler):
     148class AbstractReviewQueue(AbstractQueue, PersistentPatchCollectionDelegate, LandingSequenceErrorHandler):
    149149    def __init__(self, options=None):
    150150        AbstractQueue.__init__(self, options)
     
    189189
    190190
    191 class StyleQueue(AbstractTryQueue):
     191class StyleQueue(AbstractReviewQueue):
    192192    name = "style-queue"
    193193    show_in_main_help = False
    194194    def __init__(self):
    195         AbstractTryQueue.__init__(self)
     195        AbstractReviewQueue.__init__(self)
    196196
    197197    def should_proceed_with_work_item(self, patch):
     
    220220
    221221
    222 class BuildQueue(AbstractTryQueue):
     222class BuildQueue(AbstractReviewQueue):
    223223    name = "build-queue"
    224224    show_in_main_help = False
    225225    def __init__(self):
    226226        options = WebKitPort.port_options()
    227         AbstractTryQueue.__init__(self, options)
    228 
    229     def begin_work_queue(self):
    230         AbstractTryQueue.begin_work_queue(self)
     227        AbstractReviewQueue.__init__(self, options)
     228
     229    def begin_work_queue(self):
     230        AbstractReviewQueue.begin_work_queue(self)
    231231        self.port = WebKitPort.port(self.options)
    232232
Note: See TracChangeset for help on using the changeset viewer.