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

Unified Diff: Tools/Scripts/webkitpy/thirdparty/webpagereplay/third_party/nbhttp/__init__.py

Issue 18418010: Check in the thirdparty libs needed for webkitpy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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
Index: Tools/Scripts/webkitpy/thirdparty/webpagereplay/third_party/nbhttp/__init__.py
diff --git a/Source/devtools/front_end/cm/LICENSE b/Tools/Scripts/webkitpy/thirdparty/webpagereplay/third_party/nbhttp/__init__.py
similarity index 75%
copy from Source/devtools/front_end/cm/LICENSE
copy to Tools/Scripts/webkitpy/thirdparty/webpagereplay/third_party/nbhttp/__init__.py
index 3916e96b2dd2b96c863f9cd8e9709109f67512ed..ce1e0480a2ddaa93b734762c6d043bcf0384d8be 100644
--- a/Source/devtools/front_end/cm/LICENSE
+++ b/Tools/Scripts/webkitpy/thirdparty/webpagereplay/third_party/nbhttp/__init__.py
@@ -1,4 +1,11 @@
-Copyright (C) 2012 by Marijn Haverbeke <marijnh@gmail.com>
+#!/usr/bin/env python
+
+"""
+Non-blocking HTTP components.
+"""
+
+__copyright__ = """\
+Copyright (c) 2008-2009 Mark Nottingham
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -17,7 +24,10 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
+"""
-Please note that some subdirectories of the CodeMirror distribution
-include their own LICENSE files, and are released under different
-licences.
+from client import Client
+from server import Server
+from push_tcp import run, stop, schedule
+from http_common import dummy, header_dict, get_hdr, \
+ safe_methods, idempotent_methods, hop_by_hop_hdrs

Powered by Google App Engine
This is Rietveld 408576698