summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/platform/scroll/MainThreadScrollingReason.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/WebKit/Source/platform/scroll/MainThreadScrollingReason.h')
-rw-r--r--third_party/WebKit/Source/platform/scroll/MainThreadScrollingReason.h18
1 files changed, 18 insertions, 0 deletions
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 0000000..d043a42
--- /dev/null
+++ b/third_party/WebKit/Source/platform/scroll/MainThreadScrollingReason.h
@@ -0,0 +1,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