blob: dbd8f0bda68cbb0ea32f58eb49a361f3f3c71161 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright 2019 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 "content/child/webthemeengine_impl_mac.h"
#include "content/child/webthemeengine_impl_conversions.h"
#include "ui/native_theme/native_theme.h"
namespace content {
blink::ForcedColors WebThemeEngineMac::GetForcedColors() const {
return forced_colors_;
}
void WebThemeEngineMac::SetForcedColors(
const blink::ForcedColors forced_colors) {
forced_colors_ = forced_colors;
}
} // namespace content
|