window_state_delegate.cc 648 B

123456789101112131415161718192021222324
  1. // Copyright 2013 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/wm/window_state_delegate.h"
  5. namespace ash {
  6. WindowStateDelegate::WindowStateDelegate() = default;
  7. WindowStateDelegate::~WindowStateDelegate() = default;
  8. bool WindowStateDelegate::ToggleFullscreen(WindowState* window_state) {
  9. return false;
  10. }
  11. void WindowStateDelegate::ToggleLockedFullscreen(WindowState* window_state) {}
  12. std::unique_ptr<PresentationTimeRecorder> WindowStateDelegate::OnDragStarted(
  13. int component) {
  14. return nullptr;
  15. }
  16. } // namespace ash