summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/platform/scroll/MainThreadScrollingReason.h
blob: d043a42ded3fbe2ce14f7918d45fd180d6a0cb61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef MainThreadScrollingReason_h
#define MainThreadScrollingReason_h

#include "cc/input/main_thread_scrolling_reason.h"

namespace blink {

// A wrapper around cc's structure to expose it to core.
struct MainThreadScrollingReason : public cc::MainThreadScrollingReason {
};

} // namespace blink

#endif