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

Unified Diff: ppapi/api/dev/ppp_find_dev.idl

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/dev/ppb_find_dev.idl ('k') | ppapi/api/private/ppb_find_private.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/dev/ppp_find_dev.idl
diff --git a/ppapi/api/dev/ppp_find_dev.idl b/ppapi/api/dev/ppp_find_dev.idl
deleted file mode 100644
index d277d9529db3aa1cc073eee7fefcd5c0eb5cfc8a..0000000000000000000000000000000000000000
--- a/ppapi/api/dev/ppp_find_dev.idl
+++ /dev/null
@@ -1,38 +0,0 @@
-/* Copyright (c) 2014 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.
- */
-
-label Chrome {
- M14 = 0.3
-};
-
-/**
- * TODO(raymes): Make PPP/PPB_Find_Dev a private interface.
- */
-interface PPP_Find_Dev {
- /**
- * Finds the given UTF-8 text starting at the current selection. The number of
- * results will be updated asynchronously via NumberOfFindResultsChanged in
- * PPB_Find. Note that multiple StartFind calls can happen before StopFind is
- * called in the case of the search term changing.
- *
- * Return PP_FALSE if the plugin doesn't support find in page. Consequently,
- * it won't call any callbacks.
- */
- PP_Bool StartFind([in] PP_Instance instance,
- [in] str_t text,
- [in] PP_Bool case_sensitive);
-
- /**
- * Go to the next/previous result.
- */
- void SelectFindResult([in] PP_Instance instance,
- [in] PP_Bool forward);
-
- /**
- * Tells the plugin that the find operation has stopped, so it should clear
- * any highlighting.
- */
- void StopFind([in] PP_Instance instance);
-};
« no previous file with comments | « ppapi/api/dev/ppb_find_dev.idl ('k') | ppapi/api/private/ppb_find_private.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698