Changeset 238772 in webkit
- Timestamp:
- Nov 30, 2018, 8:28:18 PM (7 years ago)
- Location:
- trunk/Source/WTF
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/Source/WTF/ChangeLog ¶
r238771 r238772 1 2018-11-30 Alex Christensen <achristensen@webkit.org> 2 3 Fix Windows build after r238771 4 https://bugs.webkit.org/show_bug.cgi?id=190234 5 6 * wtf/URLParser.h: 7 Just make defaultPortForProtocol public so we don't have to worry about DLL linkage. 8 1 9 2018-11-30 Alex Christensen <achristensen@webkit.org> 2 10 -
TabularUnified trunk/Source/WTF/wtf/URLParser.h ¶
r238771 r238772 51 51 static bool isInUserInfoEncodeSet(UChar); 52 52 53 static std::optional<uint16_t> defaultPortForProtocol(StringView); 54 53 55 private: 54 56 URLParser(const String&, const URL& = { }, const URLTextEncoding* = nullptr); 55 57 URL result() { return m_url; } 56 58 57 static std::optional<uint16_t> defaultPortForProtocol(StringView);58 friend std::optional<uint16_t> defaultPortForProtocol(StringView);59 59 friend class URL; 60 60
Note:
See TracChangeset
for help on using the changeset viewer.