blob: 2c8bb6ac6cc713c07f1a6fd42db0baab2170006d [file] [log] [blame]
// 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 THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_VIEWPORT_STYLE_H_
#define THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_VIEWPORT_STYLE_H_
namespace blink {
// UA style if viewport is enabled.
enum class WebViewportStyle {
kDefault,
// Includes viewportAndroid.css.
kMobile,
// Includes viewportTelevision.css.
kTelevision
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_VIEWPORT_STYLE_H_