palette_tray_test_api.cc 467 B

123456789101112131415161718
  1. // Copyright 2017 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/system/palette/palette_tray_test_api.h"
  5. #include "base/check.h"
  6. namespace ash {
  7. PaletteTrayTestApi::PaletteTrayTestApi(PaletteTray* palette_tray)
  8. : palette_tray_(palette_tray) {
  9. DCHECK(palette_tray_);
  10. }
  11. PaletteTrayTestApi::~PaletteTrayTestApi() = default;
  12. } // namespace ash