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

Unified Diff: ppapi/thunk/ppb_host_resolver_private_thunk.cc

Issue 238923007: PPAPI: Format ppapi/thunk using clang-format. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use Popen instead, force carriage returns in thunks 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698