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

Side by Side 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, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* Copyright 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 /** 6 /**
7 * This file defines the <code>PPB_Find_Private</code> interface. 7 * This file defines the <code>PPB_Find_Private</code> interface.
8 */ 8 */
9 9
10 [generate_thunk] 10 [generate_thunk]
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 [in] PP_Instance instance, 46 [in] PP_Instance instance,
47 [in] int32_t total, 47 [in] int32_t total,
48 [in] PP_Bool final_result); 48 [in] PP_Bool final_result);
49 49
50 /** 50 /**
51 * Updates the index of the currently selected search item. 51 * Updates the index of the currently selected search item.
52 */ 52 */
53 void SelectedFindResultChanged( 53 void SelectedFindResultChanged(
54 [in] PP_Instance instance, 54 [in] PP_Instance instance,
55 [in] int32_t index); 55 [in] int32_t index);
56
57 /**
58 * Updates the tickmarks on the scrollbar for the find request. |tickmarks|
59 * contains |count| PP_Rects indicating the tickmark ranges.
60 */
61 void SetTickmarks(
62 [in] PP_Instance instance,
63 [in, size_as=count] PP_Rect[] tickmarks,
64 [in] uint32_t count);
56 }; 65 };
57 66
OLDNEW
« no previous file with comments | « mojo/examples/pepper_container_app/plugin_instance.cc ('k') | ppapi/c/private/ppb_find_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698