Changeset 258191 in webkit


Ignore:
Timestamp:
Mar 10, 2020 2:55:07 AM (4 years ago)
Author:
Chris Dumez
Message:

Drop unused DisableICECandidateFiltering / EnableICECandidateFiltering IPC messages
https://bugs.webkit.org/show_bug.cgi?id=208843
<rdar://problem/59683940>

Reviewed by Youenn Fablet.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::m_processDisplayName):
(WebKit::WebPage::disableICECandidateFiltering): Deleted.
(WebKit::WebPage::enableICECandidateFiltering): Deleted.

  • WebProcess/WebPage/WebPage.h:
  • WebProcess/WebPage/WebPage.messages.in:
Location:
trunk/Source/WebKit
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r258183 r258191  
     12020-03-10  Chris Dumez  <cdumez@apple.com>
     2
     3        Drop unused DisableICECandidateFiltering / EnableICECandidateFiltering IPC messages
     4        https://bugs.webkit.org/show_bug.cgi?id=208843
     5        <rdar://problem/59683940>
     6
     7        Reviewed by Youenn Fablet.
     8
     9        * WebProcess/WebPage/WebPage.cpp:
     10        (WebKit::m_processDisplayName):
     11        (WebKit::WebPage::disableICECandidateFiltering): Deleted.
     12        (WebKit::WebPage::enableICECandidateFiltering): Deleted.
     13        * WebProcess/WebPage/WebPage.h:
     14        * WebProcess/WebPage/WebPage.messages.in:
     15
    1162020-03-09  Megan Gardner  <megan_gardner@apple.com>
    217
  • trunk/Source/WebKit/WebProcess/WebPage/WebPage.cpp

    r258148 r258191  
    708708#if ENABLE(WEB_RTC)
    709709    if (!parameters.iceCandidateFilteringEnabled)
    710         disableICECandidateFiltering();
     710        m_page->disableICECandidateFiltering();
    711711#if USE(LIBWEBRTC)
    712712    if (parameters.enumeratingAllNetworkInterfacesEnabled)
     
    751751
    752752#if ENABLE(WEB_RTC)
    753 void WebPage::disableICECandidateFiltering()
    754 {
    755     m_page->disableICECandidateFiltering();
    756 }
    757 
    758 void WebPage::enableICECandidateFiltering()
    759 {
    760     m_page->enableICECandidateFiltering();
    761 }
    762753
    763754#if USE(LIBWEBRTC)
  • trunk/Source/WebKit/WebProcess/WebPage/WebPage.h

    r258148 r258191  
    15791579#endif
    15801580
    1581 #if ENABLE(WEB_RTC)
    1582     void disableICECandidateFiltering();
    1583     void enableICECandidateFiltering();
    1584 #endif
    1585 
    15861581#if ENABLE(WEB_RTC) && USE(LIBWEBRTC)
    15871582    void disableEnumeratingAllNetworkInterfaces();
  • trunk/Source/WebKit/WebProcess/WebPage/WebPage.messages.in

    r258148 r258191  
    371371#endif
    372372
    373 #if ENABLE(WEB_RTC)
    374     DisableICECandidateFiltering()
    375     EnableICECandidateFiltering()
    376 #endif
    377373#if ENABLE(WEB_RTC) && USE(LIBWEBRTC)
    378374    EnableEnumeratingAllNetworkInterfaces()
Note: See TracChangeset for help on using the changeset viewer.