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

Unified Diff: Source/modules/serviceworkers/ServiceWorkerClient.h

Issue 1040993003: ServiceWorker: Support non-window clients in Clients.matchAll (2/2 blink) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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/modules/serviceworkers/ServiceWorkerClient.h
diff --git a/Source/modules/serviceworkers/ServiceWorkerClient.h b/Source/modules/serviceworkers/ServiceWorkerClient.h
index d892599c2a458270154860961d6c88e37a24cea0..59246af7db3a21ddc4fa0671aa0497a04868a866 100644
--- a/Source/modules/serviceworkers/ServiceWorkerClient.h
+++ b/Source/modules/serviceworkers/ServiceWorkerClient.h
@@ -26,6 +26,7 @@ public:
// Client.idl
String url() const { return m_url; }
+ String frameType() const;
void postMessage(ExecutionContext*, PassRefPtr<SerializedScriptValue> message, const MessagePortArray*, ExceptionState&);
DEFINE_INLINE_VIRTUAL_TRACE() { }
@@ -38,6 +39,7 @@ protected:
private:
String m_uuid;
String m_url;
+ WebURLRequest::FrameType m_frameType;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698