Chromium Code Reviews| Index: third_party/WebKit/Source/platform/scroll/MainThreadScrollingReason.h |
| diff --git a/third_party/WebKit/Source/platform/scroll/MainThreadScrollingReason.h b/third_party/WebKit/Source/platform/scroll/MainThreadScrollingReason.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d043a42ded3fbe2ce14f7918d45fd180d6a0cb61 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/platform/scroll/MainThreadScrollingReason.h |
| @@ -0,0 +1,18 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
|
tdresser
2016/01/20 15:07:07
2016!
danakj
2016/01/20 22:38:07
Done.
|
| +// 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 |