chromium/ui/aura/scoped_window_capture_request.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/aura/scoped_window_capture_request.h"

#include "ui/aura/window.h"

namespace aura {

ScopedWindowCaptureRequest::ScopedWindowCaptureRequest(
    ScopedWindowCaptureRequest&& other)
    // Do not decrement requests on |other| nor increment them on |this| since
    // we are moving the same request into here.
    :{}

ScopedWindowCaptureRequest& ScopedWindowCaptureRequest::operator=(
    ScopedWindowCaptureRequest&& rhs) {}

ScopedWindowCaptureRequest::~ScopedWindowCaptureRequest() {}

viz::SubtreeCaptureId ScopedWindowCaptureRequest::GetCaptureId() const {}

void ScopedWindowCaptureRequest::OnWindowDestroying(Window* window) {}

ScopedWindowCaptureRequest::ScopedWindowCaptureRequest(Window* window)
    :{}

void ScopedWindowCaptureRequest::AttachToCurrentWindow(
    bool increment_requests) {}

Window* ScopedWindowCaptureRequest::DetachFromCurrentWindow(
    bool decrement_requests) {}

}  // namespace aura