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

Unified Diff: Source/web/ServiceWorkerGlobalScopeClientImpl.cpp

Issue 868233006: [ServiceWorker] Cleanup to remove old focus() code kept to not break Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@sw_client_focus_client
Patch Set: Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
diff --git a/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp b/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
index c834c21ac249d425d3218206cbf4fd1d306a30c0..23bd84d2d85adec314b371b64f63d3e32b918000 100644
--- a/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
+++ b/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
@@ -123,11 +123,6 @@ void ServiceWorkerGlobalScopeClientImpl::claim(WebServiceWorkerClientsClaimCallb
m_client.claim(callbacks);
}
-void ServiceWorkerGlobalScopeClientImpl::focus(int clientID, WebServiceWorkerClientFocusCallback* callback)
-{
- m_client.focus(clientID, callback);
-}
-
void ServiceWorkerGlobalScopeClientImpl::focus(int clientID, WebServiceWorkerClientCallbacks* callback)
{
m_client.focus(clientID, callback);

Powered by Google App Engine
This is Rietveld 408576698