Commit db72fb62 authored by kinuko@chromium.org's avatar kinuko@chromium.org

Move ServiceWorker public headers to public/*/modules/serviceworker (1.5/3)

The change was supposed to be made in three-sided patch:
[1] (blink) https://codereview.chromium.org/1262943002/
[2] (chromium) https://codereview.chromium.org/1254023006/
[3] (blink) https://codereview.chromium.org/1262603004/

But the change [1] needed to duplicate one header file (rather than
having a forwarding include) and a changes made between [1] and [2]
wasn't copied to the dup'ed file.

This change's making the same change made in the old location
to the new location.

I also added a FIXME comment so that we could keep the files in sync
until we land [2].

BUG=453032

Review URL: https://codereview.chromium.org/1294803005

git-svn-id: svn://svn.chromium.org/blink/trunk@200774 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent cbfebe62
......@@ -7,6 +7,11 @@
namespace blink {
// FIXME: This header is temporarily kept around not to break builds, but
// should be removed once chromium-side change is landed.
// If you make changes in this file please make sure you have the same changes
// in public/platform/modules/serviceworker/WebServiceWorkerResponseType.h
// until then.
enum WebServiceWorkerResponseType {
WebServiceWorkerResponseTypeBasic,
WebServiceWorkerResponseTypeCORS,
......
......@@ -13,7 +13,8 @@ enum WebServiceWorkerResponseType {
WebServiceWorkerResponseTypeDefault,
WebServiceWorkerResponseTypeError,
WebServiceWorkerResponseTypeOpaque,
WebServiceWorkerResponseTypeLast = WebServiceWorkerResponseTypeOpaque
WebServiceWorkerResponseTypeOpaqueRedirect,
WebServiceWorkerResponseTypeLast = WebServiceWorkerResponseTypeOpaqueRedirect
};
} // namespace blink
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment