Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-22 14:04:28 +01:00
parent 81b91f4139
commit f8c34fa5ee
22732 changed files with 4815320 additions and 2 deletions

View file

@ -0,0 +1,59 @@
// 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 "base/json/json_value_converter.h"
#include "base/strings/utf_string_conversions.h"
namespace base {
namespace internal {
bool BasicValueConverter<int>::Convert(
const base::Value& value, int* field) const {
if (!value.is_int())
return false;
if (field)
*field = value.GetInt();
return true;
}
bool BasicValueConverter<std::string>::Convert(
const base::Value& value, std::string* field) const {
if (!value.is_string())
return false;
if (field)
*field = value.GetString();
return true;
}
bool BasicValueConverter<string16>::Convert(
const base::Value& value, string16* field) const {
if (!value.is_string())
return false;
if (field)
*field = base::UTF8ToUTF16(value.GetString());
return true;
}
bool BasicValueConverter<double>::Convert(
const base::Value& value, double* field) const {
if (!value.is_double() && !value.is_int())
return false;
if (field)
*field = value.GetDouble();
return true;
}
bool BasicValueConverter<bool>::Convert(
const base::Value& value, bool* field) const {
if (!value.is_bool())
return false;
if (field)
*field = value.GetBool();
return true;
}
} // namespace internal
} // namespace base