chromium/chrome/browser/notifications/scheduler/internal/icon_converter_result.cc

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

#include "chrome/browser/notifications/scheduler/internal/icon_converter_result.h"

#include <utility>
#include <vector>

namespace notifications {

EncodeResult::EncodeResult(bool success, std::vector<std::string> data)
    :{}

bool EncodeResult::operator==(const EncodeResult& other) const {}

EncodeResult::~EncodeResult() = default;

DecodeResult::DecodeResult(bool success, std::vector<SkBitmap> icons)
    :{}

bool DecodeResult::operator==(const DecodeResult& other) const {}

DecodeResult::~DecodeResult() = default;

}  // namespace notifications