| Index: ppapi/c/private/ppp_find_private.h
|
| diff --git a/ppapi/c/dev/ppp_find_dev.h b/ppapi/c/private/ppp_find_private.h
|
| similarity index 81%
|
| rename from ppapi/c/dev/ppp_find_dev.h
|
| rename to ppapi/c/private/ppp_find_private.h
|
| index aecdafd84c147440a1784a4726005622e86fa35f..ef8a4cdc9bfdb9ef38db3a02cb882519fe10bb15 100644
|
| --- a/ppapi/c/dev/ppp_find_dev.h
|
| +++ b/ppapi/c/private/ppp_find_private.h
|
| @@ -2,16 +2,15 @@
|
| * Use of this source code is governed by a BSD-style license that can be
|
| * found in the LICENSE file.
|
| */
|
| -#ifndef PPAPI_C_DEV_PPP_FIND_DEV_H_
|
| -#define PPAPI_C_DEV_PPP_FIND_DEV_H_
|
| +#ifndef PPAPI_C_PRIVATE_PPP_FIND_PRIVATE_H_
|
| +#define PPAPI_C_PRIVATE_PPP_FIND_PRIVATE_H_
|
|
|
| #include "ppapi/c/pp_bool.h"
|
| #include "ppapi/c/pp_instance.h"
|
|
|
| -#define PPP_FIND_DEV_INTERFACE "PPP_Find(Dev);0.3"
|
| +#define PPP_FIND_PRIVATE_INTERFACE "PPP_Find(Private);0.3"
|
|
|
| -// TODO(raymes): Make PPP/PPB_Find_Dev a private interface.
|
| -struct PPP_Find_Dev {
|
| +struct PPP_Find_Private {
|
| // 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
|
| @@ -32,5 +31,5 @@ struct PPP_Find_Dev {
|
| void (*StopFind)(PP_Instance instance);
|
| };
|
|
|
| -#endif /* PPAPI_C_DEV_PPP_FIND_DEV_H_ */
|
| +#endif /* PPAPI_C_PRIVATE_PPP_FIND_PRIVATE_H_ */
|
|
|
|
|