secure_message_delegate.cc 776 B

123456789101112131415161718192021222324
  1. // Copyright 2015 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/multidevice/secure_message_delegate.h"
  5. namespace ash::multidevice {
  6. SecureMessageDelegate::SecureMessageDelegate() = default;
  7. SecureMessageDelegate::~SecureMessageDelegate() = default;
  8. SecureMessageDelegate::CreateOptions::CreateOptions() = default;
  9. SecureMessageDelegate::CreateOptions::CreateOptions(
  10. const CreateOptions& other) = default;
  11. SecureMessageDelegate::CreateOptions::~CreateOptions() = default;
  12. SecureMessageDelegate::UnwrapOptions::UnwrapOptions() = default;
  13. SecureMessageDelegate::UnwrapOptions::~UnwrapOptions() = default;
  14. } // namespace ash::multidevice