| Index: third_party/grpc/src/python/grpcio/grpc/_cython/_cygrpc/completion_queue.pxd.pxi
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/websocket/echo-path_wsh.py b/third_party/grpc/src/python/grpcio/grpc/_cython/_cygrpc/completion_queue.pxd.pxi
|
| similarity index 82%
|
| copy from third_party/WebKit/LayoutTests/http/tests/websocket/echo-path_wsh.py
|
| copy to third_party/grpc/src/python/grpcio/grpc/_cython/_cygrpc/completion_queue.pxd.pxi
|
| index 6072a28e6c821bdf301d4c1cf7e2c50c2cebdeef..305475c006074fc73bd83f829ce98fed8b72e593 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/websocket/echo-path_wsh.py
|
| +++ b/third_party/grpc/src/python/grpcio/grpc/_cython/_cygrpc/completion_queue.pxd.pxi
|
| @@ -1,4 +1,5 @@
|
| -# Copyright (C) 2013 Google Inc. All rights reserved.
|
| +# Copyright 2015-2016, Google Inc.
|
| +# All rights reserved.
|
| #
|
| # Redistribution and use in source and binary forms, with or without
|
| # modification, are permitted provided that the following conditions are
|
| @@ -27,12 +28,13 @@
|
| # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
| -from mod_pywebsocket import common, msgutil
|
| +cdef class CompletionQueue:
|
|
|
| + cdef grpc_completion_queue *c_completion_queue
|
| + cdef object pluck_condition
|
| + cdef int num_plucking
|
| + cdef int num_polling
|
| + cdef bint is_shutting_down
|
| + cdef bint is_shutdown
|
|
|
| -def web_socket_do_extra_handshake(request):
|
| - pass
|
| -
|
| -
|
| -def web_socket_transfer_data(request):
|
| - msgutil.send_message(request, request.uri)
|
| + cdef _interpret_event(self, grpc_event event)
|
|
|