blob: 8be397cbc42aabdcc59d6f0bfb9aa7ffef687a47 [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.
#include "third_party/blink/renderer/core/layout/layout_theme_android.h"
namespace blink {
scoped_refptr<LayoutTheme> LayoutThemeAndroid::Create() {
return base::AdoptRef(new LayoutThemeAndroid());
}
LayoutTheme& LayoutTheme::NativeTheme() {
DEFINE_STATIC_REF(LayoutTheme, layout_theme, (LayoutThemeAndroid::Create()));
return *layout_theme;
}
LayoutThemeAndroid::~LayoutThemeAndroid() {}
} // namespace blink