blob: 5794e0f808960fd1ab0c9e616e29148b8c6a75dd [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 LayoutThemeAndroid_h
#define LayoutThemeAndroid_h
#include "core/layout/LayoutThemeMobile.h"
namespace blink {
class LayoutThemeAndroid final : public LayoutThemeMobile {
public:
static PassRefPtr<LayoutTheme> Create();
bool DelegatesMenuListRendering() const override { return true; }
private:
~LayoutThemeAndroid() override;
};
} // namespace blink
#endif // LayoutThemeAndroid_h