chromium/third_party/blink/renderer/core/frame/user_activation.cc

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

#include "third_party/blink/renderer/core/frame/user_activation.h"

#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"

namespace blink {

UserActivation* UserActivation::CreateSnapshot(LocalDOMWindow* window) {}

UserActivation::UserActivation(bool has_been_active, bool is_active)
    :{}

UserActivation::UserActivation(LocalDOMWindow* window) :{}

UserActivation::~UserActivation() = default;

void UserActivation::Trace(Visitor* visitor) const {}

bool UserActivation::hasBeenActive() const {}

bool UserActivation::isActive() const {}

}  // namespace blink