blob: 9eaa35d942f47f437297a7f2decda1278018296e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/native_theme/caption_style.h"
#include "base/json/json_reader.h"
#include "base/values.h"
#include "build/build_config.h"
namespace ui {
CaptionStyle::CaptionStyle() = default;
CaptionStyle::CaptionStyle(const CaptionStyle& other) = default;
CaptionStyle::~CaptionStyle() = default;
// static
absl::optional<CaptionStyle> CaptionStyle::FromSpec(const std::string& spec) {
CaptionStyle style;
absl::optional<base::Value> dict = base::JSONReader::Read(spec);
if (!dict.has_value() || !dict->is_dict())
return absl::nullopt;
if (const std::string* value = dict->FindStringKey("text-color"))
style.text_color = *value;
if (const std::string* value = dict->FindStringKey("background-color"))
style.background_color = *value;
return style;
}
#if !BUILDFLAG(IS_WIN) && !BUILDFLAG(IS_APPLE)
absl::optional<CaptionStyle> CaptionStyle::FromSystemSettings() {
return absl::nullopt;
}
#endif
} // namespace ui
|