| OLD | NEW |
| (Empty) |
| 1 /* Copyright (c) 2010 The Chromium Authors. All rights reserved. | |
| 2 * Use of this source code is governed by a BSD-style license that can be | |
| 3 * found in the LICENSE file. | |
| 4 */ | |
| 5 #ifndef PPAPI_C_DEV_PPP_FIND_DEV_H_ | |
| 6 #define PPAPI_C_DEV_PPP_FIND_DEV_H_ | |
| 7 | |
| 8 #include "ppapi/c/pp_bool.h" | |
| 9 #include "ppapi/c/pp_instance.h" | |
| 10 | |
| 11 #define PPP_FIND_DEV_INTERFACE "PPP_Find(Dev);0.3" | |
| 12 | |
| 13 // TODO(raymes): Make PPP/PPB_Find_Dev a private interface. | |
| 14 struct PPP_Find_Dev { | |
| 15 // Finds the given UTF-8 text starting at the current selection. The number of | |
| 16 // results will be updated asynchronously via NumberOfFindResultsChanged in | |
| 17 // PPB_Find. Note that multiple StartFind calls can happen before StopFind is | |
| 18 // called in the case of the search term changing. | |
| 19 // | |
| 20 // Return PP_FALSE if the plugin doesn't support find in page. Consequently, | |
| 21 // it won't call any callbacks. | |
| 22 PP_Bool (*StartFind)(PP_Instance instance, | |
| 23 const char* text, | |
| 24 PP_Bool case_sensitive); | |
| 25 | |
| 26 // Go to the next/previous result. | |
| 27 void (*SelectFindResult)(PP_Instance instance, | |
| 28 PP_Bool forward); | |
| 29 | |
| 30 // Tells the plugin that the find operation has stopped, so it should clear | |
| 31 // any highlighting. | |
| 32 void (*StopFind)(PP_Instance instance); | |
| 33 }; | |
| 34 | |
| 35 #endif /* PPAPI_C_DEV_PPP_FIND_DEV_H_ */ | |
| 36 | |
| OLD | NEW |