| Index: third_party/WebKit/public/web/WebClientRedirectPolicy.h
|
| diff --git a/third_party/WebKit/public/web/WebClientRedirectPolicy.h b/third_party/WebKit/public/web/WebClientRedirectPolicy.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d0d378c5d643f5246e9f9e6899d8d2c6d28cb336
|
| --- /dev/null
|
| +++ b/third_party/WebKit/public/web/WebClientRedirectPolicy.h
|
| @@ -0,0 +1,19 @@
|
| +// Copyright 2016 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 WebClientRedirectPolicy_h
|
| +#define WebClientRedirectPolicy_h
|
| +
|
| +namespace blink {
|
| +
|
| +// WebClientRedirectPolicy will affect loading, e.g. ClientRedirect will
|
| +// update HTTP referrer header.
|
| +enum class WebClientRedirectPolicy {
|
| + NotClientRedirect,
|
| + ClientRedirect,
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // WebClientRedirectPolicy_h
|
|
|