Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1640)

Unified Diff: cc/input/scroll_boundary_behavior.h

Issue 2884423003: Use scroll-boundary-behavior to control overscroll-refresh/glow on android. (Closed)
Patch Set: Fixed the comments Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: cc/input/scroll_boundary_behavior.h
diff --git a/cc/input/scroll_boundary_behavior.h b/cc/input/scroll_boundary_behavior.h
new file mode 100644
index 0000000000000000000000000000000000000000..afdb1381e108d4164a38fe3877dad5e3d9ad9387
--- /dev/null
+++ b/cc/input/scroll_boundary_behavior.h
@@ -0,0 +1,40 @@
+// Copyright (c) 2017 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 CC_INPUT_SCROLL_BOUNDARY_BEHAVIOR_H_
+#define CC_INPUT_SCROLL_BOUNDARY_BEHAVIOR_H_
+
+#include "cc/cc_export.h"
+
+namespace cc {
+
+struct CC_EXPORT ScrollBoundaryBehavior {
+ enum ScrollBoundaryBehaviorType {
+ kScrollBoundaryBehaviorTypeAuto = 0x0,
+ kScrollBoundaryBehaviorTypeContain = 0x1,
+ kScrollBoundaryBehaviorTypeNone = 0x2
+ };
+
+ ScrollBoundaryBehavior()
+ : x(kScrollBoundaryBehaviorTypeAuto),
+ y(kScrollBoundaryBehaviorTypeAuto) {}
+ ScrollBoundaryBehavior(ScrollBoundaryBehaviorType type) : x(type), y(type) {}
+ ScrollBoundaryBehavior(ScrollBoundaryBehaviorType x_type,
+ ScrollBoundaryBehaviorType y_type)
+ : x(x_type), y(y_type) {}
+
+ ScrollBoundaryBehaviorType x;
+ ScrollBoundaryBehaviorType y;
+
+ bool operator==(const ScrollBoundaryBehavior& a) const {
+ return (a.x == x) && (a.y == y);
+ }
+ bool operator!=(const ScrollBoundaryBehavior& a) const {
+ return (a.x != x) || (a.y != y);
+ }
+};
+
+} // namespace cc
+
+#endif // CC_INPUT_SCROLL_BOUNDARY_BEHAVIOR_H_
« no previous file with comments | « cc/input/input_handler.h ('k') | cc/ipc/cc_param_traits.h » ('j') | cc/ipc/cc_param_traits.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698