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

Unified Diff: ppapi/cpp/dev/widget_client_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/cpp/dev/selection_dev.cc ('k') | ppapi/cpp/dev/widget_client_dev.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/dev/widget_client_dev.h
diff --git a/ppapi/cpp/dev/widget_client_dev.h b/ppapi/cpp/dev/widget_client_dev.h
deleted file mode 100644
index c638cef66ae8b26cb38d9a7f553694529b48e09e..0000000000000000000000000000000000000000
--- a/ppapi/cpp/dev/widget_client_dev.h
+++ /dev/null
@@ -1,52 +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_WIDGET_CLIENT_DEV_H_
-#define PPAPI_CPP_DEV_WIDGET_CLIENT_DEV_H_
-
-#include "ppapi/c/pp_stdint.h"
-#include "ppapi/cpp/instance_handle.h"
-
-namespace pp {
-
-class Instance;
-class Rect;
-class Scrollbar_Dev;
-class Widget_Dev;
-
-// This class provides a C++ interface for callbacks related to widgets. You
-// would normally use multiple inheritance to derive from this class in your
-// instance.
-class WidgetClient_Dev {
- public:
- explicit WidgetClient_Dev(Instance* instance);
- virtual ~WidgetClient_Dev();
-
- /**
- * Notification that the given widget should be repainted. This is the
- * implementation for PPP_Widget_Dev.
- */
- virtual void InvalidateWidget(Widget_Dev widget, const Rect& dirty_rect) = 0;
-
- /**
- * Notification that the given scrollbar should change value. This is the
- * implementation for PPP_Scrollbar_Dev.
- */
- virtual void ScrollbarValueChanged(Scrollbar_Dev scrollbar,
- uint32_t value) = 0;
-
- /**
- * Notification that the given scrollbar's overlay type has changed. This is
- * the implementation for PPP_Scrollbar_Dev.
- */
- virtual void ScrollbarOverlayChanged(Scrollbar_Dev scrollbar,
- bool type) = 0;
-
- private:
- InstanceHandle associated_instance_;
-};
-
-} // namespace pp
-
-#endif // PPAPI_CPP_DEV_WIDGET_CLIENT_DEV_H_
« no previous file with comments | « ppapi/cpp/dev/selection_dev.cc ('k') | ppapi/cpp/dev/widget_client_dev.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698