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

Side by Side Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/system/path.py

Issue 1846093002: Revert of Remove unused imports in webkitpy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 # Copyright (C) 2010 Google Inc. All rights reserved. 1 # Copyright (C) 2010 Google Inc. All rights reserved.
2 # 2 #
3 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are 4 # modification, are permitted provided that the following conditions are
5 # met: 5 # met:
6 # 6 #
7 # * Redistributions of source code must retain the above copyright 7 # * Redistributions of source code must retain the above copyright
8 # notice, this list of conditions and the following disclaimer. 8 # notice, this list of conditions and the following disclaimer.
9 # * Redistributions in binary form must reproduce the above 9 # * Redistributions in binary form must reproduce the above
10 # copyright notice, this list of conditions and the following disclaimer 10 # copyright notice, this list of conditions and the following disclaimer
(...skipping 12 matching lines...) Expand all
23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 28
29 """generic routines to convert platform-specific paths to URIs.""" 29 """generic routines to convert platform-specific paths to URIs."""
30 30
31 import atexit 31 import atexit
32 import subprocess 32 import subprocess
33 import sys
33 import threading 34 import threading
34 import urllib 35 import urllib
35 36
36 37
37 def abspath_to_uri(platform, path): 38 def abspath_to_uri(platform, path):
38 """Converts a platform-specific absolute path to a file: URL.""" 39 """Converts a platform-specific absolute path to a file: URL."""
39 return "file:" + _escape(_convert_path(platform, path)) 40 return "file:" + _escape(_convert_path(platform, path))
40 41
41 42
42 def cygpath(path): 43 def cygpath(path):
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 126
126 127
127 def _winpath_to_uri(path): 128 def _winpath_to_uri(path):
128 """Converts a window absolute path to a file: URL.""" 129 """Converts a window absolute path to a file: URL."""
129 return "///" + path.replace("\\", "/") 130 return "///" + path.replace("\\", "/")
130 131
131 132
132 def _unixypath_to_uri(path): 133 def _unixypath_to_uri(path):
133 """Converts a unix-style path to a file: URL.""" 134 """Converts a unix-style path to a file: URL."""
134 return "//" + path 135 return "//" + path
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698