user_notes_ui.cc 465 B

12345678910111213
  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/interfaces/user_notes_ui.h"
  5. namespace user_notes {
  6. // UserNotesUI must implement the user data key for its subclasses, to ensure
  7. // their instances can be retrieved in an implementation-agnostic way.
  8. const int UserNotesUI::kUserDataKey;
  9. } // namespace user_notes