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

Unified Diff: ppapi/c/dev/ppp_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/ppb_zoom_dev.h ('k') | ppapi/c/dev/ppp_selection_dev.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/dev/ppp_scrollbar_dev.h
diff --git a/ppapi/c/dev/ppp_scrollbar_dev.h b/ppapi/c/dev/ppp_scrollbar_dev.h
deleted file mode 100644
index 0a3221073b2b77c230bddd1999afc1b4402e1127..0000000000000000000000000000000000000000
--- a/ppapi/c/dev/ppp_scrollbar_dev.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/* Copyright (c) 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.
- */
-
-/* From dev/ppp_scrollbar_dev.idl modified Tue Nov 27 14:46:25 2012. */
-
-#ifndef PPAPI_C_DEV_PPP_SCROLLBAR_DEV_H_
-#define PPAPI_C_DEV_PPP_SCROLLBAR_DEV_H_
-
-#include "ppapi/c/pp_bool.h"
-#include "ppapi/c/pp_instance.h"
-#include "ppapi/c/pp_macros.h"
-#include "ppapi/c/pp_resource.h"
-#include "ppapi/c/pp_stdint.h"
-
-#define PPP_SCROLLBAR_DEV_INTERFACE_0_2 "PPP_Scrollbar(Dev);0.2"
-#define PPP_SCROLLBAR_DEV_INTERFACE_0_3 "PPP_Scrollbar(Dev);0.3"
-#define PPP_SCROLLBAR_DEV_INTERFACE PPP_SCROLLBAR_DEV_INTERFACE_0_3
-
-/**
- * @file
- * This file defines the <code>PPP_Scrollbar_Dev</code> interface.
- */
-
-
-/**
- * @addtogroup Interfaces
- * @{
- */
-struct PPP_Scrollbar_Dev_0_3 {
- /**
- * Informs the instance that the scrollbar's value has changed.
- */
- void (*ValueChanged)(PP_Instance instance,
- PP_Resource scrollbar,
- uint32_t value);
- /**
- * Informs the instance that the user has changed the system
- * scrollbar style.
- */
- void (*OverlayChanged)(PP_Instance instance,
- PP_Resource scrollbar,
- PP_Bool overlay);
-};
-
-typedef struct PPP_Scrollbar_Dev_0_3 PPP_Scrollbar_Dev;
-
-struct PPP_Scrollbar_Dev_0_2 {
- void (*ValueChanged)(PP_Instance instance,
- PP_Resource scrollbar,
- uint32_t value);
-};
-/**
- * @}
- */
-
-#endif /* PPAPI_C_DEV_PPP_SCROLLBAR_DEV_H_ */
-
« no previous file with comments | « ppapi/c/dev/ppb_zoom_dev.h ('k') | ppapi/c/dev/ppp_selection_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698