summaryrefslogtreecommitdiffstats
path: root/chromium/cc/layers/scrollbar_layer_interface.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-01-23 17:21:03 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-01-23 16:25:15 +0000
commitc551f43206405019121bd2b2c93714319a0a3300 (patch)
tree1f48c30631c421fd4bbb3c36da20183c8a2ed7d7 /chromium/cc/layers/scrollbar_layer_interface.h
parent7961cea6d1041e3e454dae6a1da660b453efd238 (diff)
BASELINE: Update Chromium to 79.0.3945.139
Change-Id: I336b7182fab9bca80b709682489c07db112eaca5 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/cc/layers/scrollbar_layer_interface.h')
-rw-r--r--chromium/cc/layers/scrollbar_layer_interface.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/chromium/cc/layers/scrollbar_layer_interface.h b/chromium/cc/layers/scrollbar_layer_interface.h
deleted file mode 100644
index 661028e4a9a..00000000000
--- a/chromium/cc/layers/scrollbar_layer_interface.h
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright 2013 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_LAYERS_SCROLLBAR_LAYER_INTERFACE_H_
-#define CC_LAYERS_SCROLLBAR_LAYER_INTERFACE_H_
-
-#include "cc/cc_export.h"
-#include "cc/input/scrollbar.h"
-
-namespace cc {
-
-class CC_EXPORT ScrollbarLayerInterface {
- public:
- ScrollbarLayerInterface(const ScrollbarLayerInterface&) = delete;
- ScrollbarLayerInterface& operator=(const ScrollbarLayerInterface&) = delete;
-
- virtual void SetScrollElementId(ElementId element_id) = 0;
-
- protected:
- ScrollbarLayerInterface() {}
- virtual ~ScrollbarLayerInterface() {}
-};
-
-} // namespace cc
-
-#endif // CC_LAYERS_SCROLLBAR_LAYER_INTERFACE_H_