| Index: third_party/WebKit/public/platform/WebLanguageDetectionDetails.h
|
| diff --git a/third_party/WebKit/public/platform/WebLanguageDetectionDetails.h b/third_party/WebKit/public/platform/WebLanguageDetectionDetails.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f4a56bbd5346b2f14da25b5bbc967119149ff688
|
| --- /dev/null
|
| +++ b/third_party/WebKit/public/platform/WebLanguageDetectionDetails.h
|
| @@ -0,0 +1,23 @@
|
| +// 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 WebLanguageDetectionDetails_h
|
| +#define WebLanguageDetectionDetails_h
|
| +
|
| +#include "public/platform/WebString.h"
|
| +#include "public/platform/WebURL.h"
|
| +
|
| +namespace blink {
|
| +
|
| +struct WebLanguageDetectionDetails {
|
| + WebLanguageDetectionDetails() : hasNoTranslateMeta(false) {}
|
| + WebURL url;
|
| + WebString contentLanguage;
|
| + WebString htmlLanguage;
|
| + bool hasNoTranslateMeta;
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // WebLanguageDetectionDetails_h
|
|
|