blob: c2410ce302f4357a4191a62916351d27e20fe0cb [file] [log] [blame]
// Copyright 2022 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 "components/segmentation_platform/internal/database/ukm_database.h"
namespace segmentation_platform {
UkmDatabase::CustomSqlQuery::CustomSqlQuery() = default;
UkmDatabase::CustomSqlQuery::CustomSqlQuery(CustomSqlQuery&&) = default;
UkmDatabase::CustomSqlQuery::CustomSqlQuery(
const base::StringPiece& query,
const std::vector<processing::ProcessedValue>& bind_values)
: query(query), bind_values(bind_values) {}
UkmDatabase::CustomSqlQuery::~CustomSqlQuery() = default;
} // namespace segmentation_platform