lock_screen_action_background_controller_stub.cc 877 B

1234567891011121314151617181920212223242526272829303132
  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/lock_screen_action/lock_screen_action_background_controller_stub.h"
  5. namespace ash {
  6. LockScreenActionBackgroundControllerStub::
  7. LockScreenActionBackgroundControllerStub() = default;
  8. LockScreenActionBackgroundControllerStub::
  9. ~LockScreenActionBackgroundControllerStub() = default;
  10. bool LockScreenActionBackgroundControllerStub::IsBackgroundWindow(
  11. aura::Window* window) const {
  12. return false;
  13. }
  14. bool LockScreenActionBackgroundControllerStub::ShowBackground() {
  15. return false;
  16. }
  17. bool LockScreenActionBackgroundControllerStub::HideBackgroundImmediately() {
  18. return false;
  19. }
  20. bool LockScreenActionBackgroundControllerStub::HideBackground() {
  21. return false;
  22. }
  23. } // namespace ash