Index: public/platform/WebServiceWorkerClientQueryOptions.h |
diff --git a/public/platform/WebServiceWorkerClientQueryOptions.h b/public/platform/WebServiceWorkerClientQueryOptions.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a6eea830fde2cd2ea6bbd563e66a7bf9f616a9f3 |
--- /dev/null |
+++ b/public/platform/WebServiceWorkerClientQueryOptions.h |
@@ -0,0 +1,25 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef WebServiceWorkerClientQueryOptions_h |
+#define WebServiceWorkerClientQueryOptions_h |
+ |
+#include "public/platform/WebServiceWorkerClientType.h" |
+ |
+namespace blink { |
+ |
+struct WebServiceWorkerClientQueryOptions { |
+ WebServiceWorkerClientQueryOptions() |
+ : clientType(WebServiceWorkerClientTypeWindow) |
+ , includeUncontrolled(false) |
+ { |
+ } |
+ |
+ WebServiceWorkerClientType clientType; |
+ bool includeUncontrolled; |
+}; |
+ |
+} // namespace blink |
+ |
+#endif // WebServiceWorkerClientQueryOptions_h |