Index: third_party/grpc/src/python/grpcio/grpc/framework/common/style.py |
diff --git a/third_party/WebKit/LayoutTests/http/tests/websocket/origin-test_wsh.py b/third_party/grpc/src/python/grpcio/grpc/framework/common/style.py |
similarity index 83% |
copy from third_party/WebKit/LayoutTests/http/tests/websocket/origin-test_wsh.py |
copy to third_party/grpc/src/python/grpcio/grpc/framework/common/style.py |
index 2c97ac6e4eb321cc261346d02d264b522cdbd87c..6ae694bdcb40d2c178b2659a4fe76261223795d0 100644 |
--- a/third_party/WebKit/LayoutTests/http/tests/websocket/origin-test_wsh.py |
+++ b/third_party/grpc/src/python/grpcio/grpc/framework/common/style.py |
@@ -1,4 +1,5 @@ |
-# Copyright (C) 2009 Google Inc. All rights reserved. |
+# Copyright 2015, 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 |
@@ -26,13 +27,14 @@ |
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
+"""Defines an enum for classifying RPC methods by control flow semantics.""" |
-from mod_pywebsocket import msgutil |
+import enum |
-def web_socket_do_extra_handshake(request): |
- pass # Always accept. |
+@enum.unique |
+class Service(enum.Enum): |
+ """Describes the control flow style of RPC method implementation.""" |
- |
-def web_socket_transfer_data(request): |
- msgutil.send_message(request, request.ws_origin) |
+ INLINE = 'inline' |
+ EVENT = 'event' |