blob: 19e9bc3a9736a126d1b6d51bdcf4c8b4efb22135 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// 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 WebSharedWorkerCreationErrors_h
#define WebSharedWorkerCreationErrors_h
#include "../platform/WebCommon.h"
namespace blink {
// Describes errors that can occur while creating a SharedWorker.
enum WebWorkerCreationError {
WebWorkerCreationErrorNone = 0,
WebWorkerCreationErrorURLMismatch,
WebWorkerCreationErrorSecureContextMismatch,
WebWorkerCreationErrorLast = WebWorkerCreationErrorSecureContextMismatch
};
} // namespace blink
#endif // WebSharedWorkerCreationErrors_h
|