chromium/content/test/mock_overscroll_controller_delegate_aura.h

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

#ifndef CONTENT_TEST_MOCK_OVERSCROLL_CONTROLLER_DELEGATE_AURA_H_
#define CONTENT_TEST_MOCK_OVERSCROLL_CONTROLLER_DELEGATE_AURA_H_

#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "content/browser/renderer_host/overscroll_controller_delegate.h"
#include "content/test/mock_overscroll_observer.h"

namespace content {

class MessageLoopRunner;
class RenderWidgetHostViewAura;

// Receives overscroll gesture updates from the aura overscroll controller.
class MockOverscrollControllerDelegateAura
    : public OverscrollControllerDelegate,
      public MockOverscrollObserver {};

}  // namespace content

#endif  // CONTENT_TEST_MOCK_OVERSCROLL_CONTROLLER_DELEGATE_AURA_H_