icon_decoder.cc 475 B

123456789101112131415
  1. // Copyright 2022 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "ash/components/phonehub/icon_decoder_impl.h"
  5. namespace ash {
  6. namespace phonehub {
  7. IconDecoder::DecodingData::DecodingData(unsigned long id,
  8. const std::string& input_data)
  9. : id(id), input_data(input_data) {}
  10. } // namespace phonehub
  11. } // namespace ash