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

Unified Diff: ppapi/cpp/dev/scrollbar_dev.h

Issue 1161563002: Remove unused in-process pepper APIs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « ppapi/c/dev/ppp_zoom_dev.h ('k') | ppapi/cpp/dev/scrollbar_dev.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/dev/scrollbar_dev.h
diff --git a/ppapi/cpp/dev/scrollbar_dev.h b/ppapi/cpp/dev/scrollbar_dev.h
deleted file mode 100644
index fabbbd7f471bd6c8d24931ffc4abe8f7bca4e8ba..0000000000000000000000000000000000000000
--- a/ppapi/cpp/dev/scrollbar_dev.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright (c) 2010 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 PPAPI_CPP_DEV_SCROLLBAR_DEV_H_
-#define PPAPI_CPP_DEV_SCROLLBAR_DEV_H_
-
-#include "ppapi/c/dev/ppb_scrollbar_dev.h"
-#include "ppapi/cpp/dev/widget_dev.h"
-
-namespace pp {
-
-class InstanceHandle;
-
-// This class allows a plugin to use the browser's scrollbar widget.
-class Scrollbar_Dev : public Widget_Dev {
- public:
- // Creates an is_null() Scrollbar object.
- Scrollbar_Dev() {}
-
- explicit Scrollbar_Dev(PP_Resource resource);
- Scrollbar_Dev(const InstanceHandle& instance, bool vertical);
- Scrollbar_Dev(const Scrollbar_Dev& other);
-
- Scrollbar_Dev& operator=(const Scrollbar_Dev& other);
-
- // PPB_Scrollbar methods:
- uint32_t GetThickness();
- bool IsOverlay();
- uint32_t GetValue();
- void SetValue(uint32_t value);
- void SetDocumentSize(uint32_t size);
- void SetTickMarks(const Rect* tick_marks, uint32_t count);
- void ScrollBy(PP_ScrollBy_Dev unit, int32_t multiplier);
-};
-
-} // namespace pp
-
-#endif // PPAPI_CPP_DEV_SCROLLBAR_DEV_H_
« no previous file with comments | « ppapi/c/dev/ppp_zoom_dev.h ('k') | ppapi/cpp/dev/scrollbar_dev.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698