Changeset 242847 in webkit
- Timestamp:
- Mar 13, 2019, 12:48:12 AM (7 years ago)
- Location:
- trunk/Source
- Files:
-
- 5 edited
-
WebCore/ChangeLog (modified) (1 diff)
-
WebCore/platform/playstation/UserAgentPlayStation.cpp (modified) (1 diff)
-
WebCore/platform/win/UserAgentWin.cpp (modified) (1 diff)
-
WebKit/ChangeLog (modified) (1 diff)
-
WebKit/WebProcess/WebPage/win/WebPageWin.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r242842 r242847 1 2019-03-13 Fujii Hironori <Hironori.Fujii@sony.com> 2 3 [Win][PlayStation] Remove WebCore::standardUserAgentForURL 4 https://bugs.webkit.org/show_bug.cgi?id=195662 5 6 Reviewed by Ryosuke Niwa. 7 8 WebCore::standardUserAgentForURL is just a stub in Windows port. 9 10 No new tests because there is no behavior change. 11 12 * platform/win/UserAgentWin.cpp: 13 (WebCore::standardUserAgentForURL): Deleted. 14 * platform/playstation/UserAgentPlayStation.cpp: 15 (WebCore::standardUserAgentForURL): Deleted. 16 1 17 2019-03-12 Ross Kirsling <ross.kirsling@sony.com> 2 18 -
trunk/Source/WebCore/platform/playstation/UserAgentPlayStation.cpp
r238913 r242847 34 34 } 35 35 36 String standardUserAgentForURL(const URL&)37 {38 // The null string means we don't need a specific UA for the given URL.39 return emptyString();40 }41 42 36 } // namespace WebCore -
trunk/Source/WebCore/platform/win/UserAgentWin.cpp
r230509 r242847 50 50 } 51 51 52 String standardUserAgentForURL(const URL& url)53 {54 // The null string means we don't need a specific UA for the given URL.55 return { };56 }57 58 52 } // namespace WebCore -
trunk/Source/WebKit/ChangeLog
r242842 r242847 1 2019-03-13 Fujii Hironori <Hironori.Fujii@sony.com> 2 3 [Win][PlayStation] Remove WebCore::standardUserAgentForURL 4 https://bugs.webkit.org/show_bug.cgi?id=195662 5 6 Reviewed by Ryosuke Niwa. 7 8 * WebProcess/WebPage/win/WebPageWin.cpp: 9 (WebKit::WebPage::platformUserAgent const): Return an empty string as well as mac/ios ports. 10 1 11 2019-03-12 Ross Kirsling <ross.kirsling@sony.com> 2 12 -
trunk/Source/WebKit/WebProcess/WebPage/win/WebPageWin.cpp
r241721 r242847 114 114 } 115 115 116 String WebPage::platformUserAgent(const URL& url) const 117 { 118 if (url.isNull() || !m_page->settings().needsSiteSpecificQuirks()) 119 return String(); 120 121 return WebCore::standardUserAgentForURL(url); 116 String WebPage::platformUserAgent(const URL&) const 117 { 118 return { }; 122 119 } 123 120
Note:
See TracChangeset
for help on using the changeset viewer.