Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 Loading... | |
| 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([in] PP_Instance instance, | |
| 62 [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.
| |
| 63 [in] uint32_t count); | |
| 56 }; | 64 }; |
| 57 | 65 |
| OLD | NEW |