summaryrefslogtreecommitdiffstats
path: root/cc/layers/scrollbar_layer_impl_base.h
diff options
context:
space:
mode:
authorwjmaclean@chromium.org <wjmaclean@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-17 03:53:59 +0000
committerwjmaclean@chromium.org <wjmaclean@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-17 03:53:59 +0000
commit8d6cad80f073eae2abee80f473c71102121c09db (patch)
tree7e2e6a350dbef2a6eae14620a8d140527120be6d /cc/layers/scrollbar_layer_impl_base.h
parent5190e94c89708c73cbe4a82baa1a6d920ee7d66c (diff)
downloadchromium_src-8d6cad80f073eae2abee80f473c71102121c09db.zip
chromium_src-8d6cad80f073eae2abee80f473c71102121c09db.tar.gz
chromium_src-8d6cad80f073eae2abee80f473c71102121c09db.tar.bz2
Remove ScrollbarLayerImplBase.
The expected need for this intermediate layer of abstraction never materialized, nor does it look like this will ever be used, therefore it should be removed. BUG=none Review URL: https://chromiumcodereview.appspot.com/14877020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@200718 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/layers/scrollbar_layer_impl_base.h')
-rw-r--r--cc/layers/scrollbar_layer_impl_base.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/cc/layers/scrollbar_layer_impl_base.h b/cc/layers/scrollbar_layer_impl_base.h
deleted file mode 100644
index 5257c041..0000000
--- a/cc/layers/scrollbar_layer_impl_base.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright 2012 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_IMPL_BASE_H_
-#define CC_LAYERS_SCROLLBAR_LAYER_IMPL_BASE_H_
-
-#include "cc/base/cc_export.h"
-#include "cc/layers/layer_impl.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebScrollbar.h"
-
-namespace cc {
-
-class CC_EXPORT ScrollbarLayerImplBase : public LayerImpl {
- public:
- virtual ~ScrollbarLayerImplBase() {}
-
- virtual float CurrentPos() const = 0;
- virtual int TotalSize() const = 0;
- virtual int Maximum() const = 0;
- virtual WebKit::WebScrollbar::Orientation Orientation() const = 0;
-
- protected:
- ScrollbarLayerImplBase(LayerTreeImpl* tree_impl, int id)
- : LayerImpl(tree_impl, id) {}
-};
-
-} // namespace cc
-
-#endif // CC_LAYERS_SCROLLBAR_LAYER_IMPL_BASE_H_