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

Unified Diff: ppapi/c/dev/ppb_find_dev.h

Issue 197623005: Rename PPB_Find_Dev to PPB_Find_Private (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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/api/private/ppp_find_private.idl ('k') | ppapi/c/dev/ppp_find_dev.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/dev/ppb_find_dev.h
diff --git a/ppapi/c/dev/ppb_find_dev.h b/ppapi/c/dev/ppb_find_dev.h
deleted file mode 100644
index 15b8f27942052d9db4ac8f33e08bbc53125bf66b..0000000000000000000000000000000000000000
--- a/ppapi/c/dev/ppb_find_dev.h
+++ /dev/null
@@ -1,70 +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/ppb_find_dev.idl modified Thu Mar 13 11:05:53 2014. */
-
-#ifndef PPAPI_C_DEV_PPB_FIND_DEV_H_
-#define PPAPI_C_DEV_PPB_FIND_DEV_H_
-
-#include "ppapi/c/pp_bool.h"
-#include "ppapi/c/pp_instance.h"
-#include "ppapi/c/pp_macros.h"
-#include "ppapi/c/pp_stdint.h"
-
-#define PPB_FIND_DEV_INTERFACE_0_3 "PPB_Find(Dev);0.3"
-#define PPB_FIND_DEV_INTERFACE PPB_FIND_DEV_INTERFACE_0_3
-
-/**
- * @file
- * This file defines the <code>PPB_Find_Dev</code> interface.
- */
-
-
-/**
- * @addtogroup Interfaces
- * @{
- */
-/* TODO(raymes): Make PPP/PPB_Find_Dev a private interface. It's only used by
- * PDF currently and it's restrictive in the way it can be used. */
-struct PPB_Find_Dev_0_3 {
- /**
- * Sets the instance of this plugin as the mechanism that will be used to
- * handle find requests in the renderer. This will only succeed if the plugin
- * is embedded within the content of the top level frame. Note that this will
- * result in the renderer handing over all responsibility for doing find to
- * the plugin and content from the rest of the page will not be searched.
- *
- *
- * In the case that the plugin is loaded directly as the top level document,
- * this function does not need to be called. In that case the plugin is
- * assumed to handle find requests.
- *
- * There can only be one plugin which handles find requests. If a plugin calls
- * this while an existing plugin is registered, the existing plugin will be
- * de-registered and will no longer receive any requests.
- */
- void (*SetPluginToHandleFindRequests)(PP_Instance instance);
- /**
- * Updates the number of find results for the current search term. If
- * there are no matches 0 should be passed in. Only when the plugin has
- * finished searching should it pass in the final count with final_result set
- * to PP_TRUE.
- */
- void (*NumberOfFindResultsChanged)(PP_Instance instance,
- int32_t total,
- PP_Bool final_result);
- /**
- * Updates the index of the currently selected search item.
- */
- void (*SelectedFindResultChanged)(PP_Instance instance, int32_t index);
-};
-
-typedef struct PPB_Find_Dev_0_3 PPB_Find_Dev;
-/**
- * @}
- */
-
-#endif /* PPAPI_C_DEV_PPB_FIND_DEV_H_ */
-
« no previous file with comments | « ppapi/api/private/ppp_find_private.idl ('k') | ppapi/c/dev/ppp_find_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698