blob: e393003aadec1a3e61625ccf3b335522495e1269 [file] [log] [blame]
// Copyright 2014 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 "core/layout/LayoutThemeWin.h"
namespace blink {
PassRefPtr<LayoutTheme> LayoutThemeWin::Create() {
return AdoptRef(new LayoutThemeWin());
}
LayoutTheme& LayoutTheme::NativeTheme() {
DEFINE_STATIC_REF(LayoutTheme, layout_theme, (LayoutThemeWin::Create()));
return *layout_theme;
}
} // namespace blink