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

content / public / browser / legacy_tech_cookie_issue_details.cc [blame]

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/public/browser/legacy_tech_cookie_issue_details.h"

#include "url/gurl.h"

namespace content {

LegacyTechCookieIssueDetails::LegacyTechCookieIssueDetails() = default;
LegacyTechCookieIssueDetails::LegacyTechCookieIssueDetails(
    const GURL& transfer_or_script_url,
    const std::string& name,
    const std::string& domain,
    const std::string& path,
    AccessOperation access_operation)
    : transfer_or_script_url(transfer_or_script_url),
      name(name),
      domain(domain),
      path(path),
      access_operation(access_operation) {}

LegacyTechCookieIssueDetails::LegacyTechCookieIssueDetails(
    const LegacyTechCookieIssueDetails& other) = default;
LegacyTechCookieIssueDetails::~LegacyTechCookieIssueDetails() = default;

}  // namespace content