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

Unified Diff: Source/modules/serviceworkers/FetchEvent.cpp

Issue 1149163004: Revert "Add Client Attribute to FetchEvent- Blink Side." (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix merge Created 5 years, 7 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
« no previous file with comments | « Source/modules/serviceworkers/FetchEvent.h ('k') | Source/modules/serviceworkers/FetchEvent.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/FetchEvent.cpp
diff --git a/Source/modules/serviceworkers/FetchEvent.cpp b/Source/modules/serviceworkers/FetchEvent.cpp
index 1765234b0e15a4f63497b23535425576ff08e24f..625809d23bb227614629dca0f95dbad732df4675 100644
--- a/Source/modules/serviceworkers/FetchEvent.cpp
+++ b/Source/modules/serviceworkers/FetchEvent.cpp
@@ -33,11 +33,6 @@ Request* FetchEvent::request() const
return m_request;
}
-ServiceWorkerClient* FetchEvent::client() const
-{
- return m_client;
-}
-
bool FetchEvent::isReload() const
{
return m_isReload;
@@ -65,8 +60,6 @@ FetchEvent::FetchEvent(const AtomicString& type, const FetchEventInit& initializ
{
if (initializer.hasRequest())
m_request = initializer.request();
- if (initializer.hasClient())
- m_client = initializer.client();
m_isReload = initializer.isReload();
}
@@ -74,7 +67,6 @@ DEFINE_TRACE(FetchEvent)
{
visitor->trace(m_observer);
visitor->trace(m_request);
- visitor->trace(m_client);
ExtendableEvent::trace(visitor);
}
« no previous file with comments | « Source/modules/serviceworkers/FetchEvent.h ('k') | Source/modules/serviceworkers/FetchEvent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698