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 |