OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
tdresser
2016/01/20 15:07:07
2016!
danakj
2016/01/20 22:38:07
Done.
| |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef MainThreadScrollingReason_h | |
6 #define MainThreadScrollingReason_h | |
7 | |
8 #include "cc/input/main_thread_scrolling_reason.h" | |
9 | |
10 namespace blink { | |
11 | |
12 // A wrapper around cc's structure to expose it to core. | |
13 struct MainThreadScrollingReason : public cc::MainThreadScrollingReason { | |
14 }; | |
15 | |
16 } // namespace blink | |
17 | |
18 #endif | |
OLD | NEW |