| Index: ppapi/thunk/ppb_host_resolver_private_thunk.cc
|
| diff --git a/ppapi/thunk/ppb_host_resolver_private_thunk.cc b/ppapi/thunk/ppb_host_resolver_private_thunk.cc
|
| index 9da6656497791c484669d15bc80e8ad9308092b0..95cf5c108909e3143aad4bc98cd0e5288a511c94 100644
|
| --- a/ppapi/thunk/ppb_host_resolver_private_thunk.cc
|
| +++ b/ppapi/thunk/ppb_host_resolver_private_thunk.cc
|
| @@ -37,8 +37,8 @@ int32_t Resolve(PP_Resource host_resolver,
|
| EnterHostResolver enter(host_resolver, callback, true);
|
| if (enter.failed())
|
| return enter.retval();
|
| - return enter.SetResult(enter.object()->Resolve(host, port, hint,
|
| - enter.callback()));
|
| + return enter.SetResult(
|
| + enter.object()->Resolve(host, port, hint, enter.callback()));
|
| }
|
|
|
| PP_Var GetCanonicalName(PP_Resource host_resolver) {
|
| @@ -65,13 +65,8 @@ PP_Bool GetNetAddress(PP_Resource host_resolver,
|
| }
|
|
|
| const PPB_HostResolver_Private g_ppb_host_resolver_thunk = {
|
| - &Create,
|
| - &IsHostResolver,
|
| - &Resolve,
|
| - &GetCanonicalName,
|
| - &GetSize,
|
| - &GetNetAddress
|
| -};
|
| + &Create, &IsHostResolver, &Resolve,
|
| + &GetCanonicalName, &GetSize, &GetNetAddress};
|
|
|
| } // namespace
|
|
|
|
|