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

Unified Diff: ppapi/api/private/ppb_find_private.idl

Issue 195893044: Add a PPB_Find_Private function to set the tickmarks on the page. (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
Index: ppapi/api/private/ppb_find_private.idl
diff --git a/ppapi/api/private/ppb_find_private.idl b/ppapi/api/private/ppb_find_private.idl
index 4e80a8a7768ee03b81a339dbeff3935f7de560b0..b44b9c99333568df08d61fda5b9f9fbec14a21b8 100644
--- a/ppapi/api/private/ppb_find_private.idl
+++ b/ppapi/api/private/ppb_find_private.idl
@@ -53,5 +53,13 @@ interface PPB_Find_Private {
void SelectedFindResultChanged(
[in] PP_Instance instance,
[in] int32_t index);
+
+ /**
+ * Updates the tickmarks on the scrollbar for the find request. |tickmarks|
+ * contains |count| PP_Rects indicating the tickmark ranges.
+ */
+ void SetTickmarks([in] PP_Instance instance,
+ [in, size_as=count] PP_Rect[] tickmarks,
yzshen1 2014/03/19 17:38:05 wrong indent (please either move the first paramet
raymes 2014/03/20 01:53:56 Done.
+ [in] uint32_t count);
};

Powered by Google App Engine
This is Rietveld 408576698