user_note_metadata.cc 639 B

123456789101112131415161718
  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 "components/user_notes/model/user_note_metadata.h"
  5. namespace user_notes {
  6. UserNoteMetadata::UserNoteMetadata(base::Time creation_date,
  7. base::Time modification_date,
  8. int min_note_version)
  9. : creation_date_(creation_date),
  10. modification_date_(modification_date),
  11. min_note_version_(min_note_version) {}
  12. UserNoteMetadata::~UserNoteMetadata() = default;
  13. } // namespace user_notes