Changeset 245987 in webkit
- Timestamp:
- May 31, 2019, 2:56:37 PM (7 years ago)
- Location:
- trunk/Source
- Files:
-
- 6 edited
-
WebCore/ChangeLog (modified) (1 diff)
-
WebCore/Modules/indexeddb/shared/InProcessIDBServer.h (modified) (1 diff)
-
WebCore/html/HTMLMediaElement.h (modified) (1 diff)
-
WebCore/platform/ScrollView.h (modified) (1 diff)
-
WebKit/ChangeLog (modified) (1 diff)
-
WebKit/UIProcess/WebAuthentication/AuthenticatorManager.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r245980 r245987 1 2019-05-31 Geoffrey Garen <ggaren@apple.com> 2 3 Some WeakPtr typedef cleanup 4 https://bugs.webkit.org/show_bug.cgi?id=198431 5 6 Reviewed by Chris Dumez. 7 8 Use "using" instead of "typedef", since using is preferred in C++ for 9 better compatibility with templates. 10 11 * Modules/indexeddb/shared/InProcessIDBServer.h: 12 * html/HTMLMediaElement.h: 13 * platform/ScrollView.h: 14 1 15 2019-05-31 Andres Gonzalez <andresg_22@apple.com> 2 16 -
trunk/Source/WebCore/Modules/indexeddb/shared/InProcessIDBServer.h
r245972 r245987 55 55 public: 56 56 using IDBClient::IDBConnectionToServerDelegate::weakPtrFactory; 57 typedef IDBClient::IDBConnectionToServerDelegate::WeakValueTypeWeakValueType;57 using WeakValueType = IDBClient::IDBConnectionToServerDelegate::WeakValueType; 58 58 59 59 WEBCORE_EXPORT static Ref<InProcessIDBServer> create(PAL::SessionID); -
trunk/Source/WebCore/html/HTMLMediaElement.h
r245868 r245987 150 150 WTF_MAKE_ISO_ALLOCATED(HTMLMediaElement); 151 151 public: 152 typedef HTMLElement::WeakValueTypeWeakValueType;152 using WeakValueType = HTMLElement::WeakValueType; 153 153 using HTMLElement::weakPtrFactory; 154 154 -
trunk/Source/WebCore/platform/ScrollView.h
r245868 r245987 66 66 virtual ~ScrollView(); 67 67 68 typedef Widget::WeakValueTypeWeakValueType;68 using WeakValueType = Widget::WeakValueType; 69 69 using Widget::weakPtrFactory; 70 70 -
trunk/Source/WebKit/ChangeLog
r245984 r245987 1 2019-05-31 Geoffrey Garen <ggaren@apple.com> 2 3 Some WeakPtr typedef cleanup 4 https://bugs.webkit.org/show_bug.cgi?id=198431 5 6 Reviewed by Chris Dumez. 7 8 Use "using" instead of "typedef", since using is preferred in C++ for 9 better compatibility with templates. 10 11 * UIProcess/WebAuthentication/AuthenticatorManager.h: 12 1 13 2019-05-31 Commit Queue <commit-queue@webkit.org> 2 14 -
trunk/Source/WebKit/UIProcess/WebAuthentication/AuthenticatorManager.h
r245868 r245987 50 50 51 51 using AuthenticatorTransportService::Observer::weakPtrFactory; 52 typedef AuthenticatorTransportService::Observer::WeakValueTypeWeakValueType;52 using WeakValueType = AuthenticatorTransportService::Observer::WeakValueType; 53 53 54 54 AuthenticatorManager();
Note:
See TracChangeset
for help on using the changeset viewer.