| Index: public/platform/WebServiceWorkerFetchStoresError.h
|
| diff --git a/public/platform/WebServiceWorkerFetchStoresError.h b/public/platform/WebServiceWorkerFetchStoresError.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..35ba9f6042a38778a53b3cc209a6dc19303e10e3
|
| --- /dev/null
|
| +++ b/public/platform/WebServiceWorkerFetchStoresError.h
|
| @@ -0,0 +1,19 @@
|
| +// Copyright 2014 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 WebServiceWorkerFetchStoresError_h
|
| +#define WebServiceWorkerFetchStoresError_h
|
| +
|
| +namespace blink {
|
| +
|
| +enum WebServiceWorkerFetchStoresError {
|
| + WebServiceWorkerFetchStoresErrorNotImplemented,
|
| + WebServiceWorkerFetchStoresErrorNotFound,
|
| + WebServiceWorkerFetchStoresErrorExists,
|
| + WebServiceWorkerFetchStoresErrorLast = WebServiceWorkerFetchStoresErrorExists
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // WebServiceWorkerFetchStoresError_h
|
|
|