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

Unified Diff: ppapi/thunk/ppb_uma_private_thunk.cc

Issue 238923007: PPAPI: Format ppapi/thunk using clang-format. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 6 years, 1 month 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
« no previous file with comments | « ppapi/thunk/ppb_udp_socket_thunk.cc ('k') | ppapi/thunk/ppb_url_loader_thunk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/thunk/ppb_uma_private_thunk.cc
diff --git a/ppapi/thunk/ppb_uma_private_thunk.cc b/ppapi/thunk/ppb_uma_private_thunk.cc
index 299b64369b4d4c3ca82ff925eb73d93b03e0bfcd..3003092cbd4e09c51dd7998a65d9efdae2d2f945 100644
--- a/ppapi/thunk/ppb_uma_private_thunk.cc
+++ b/ppapi/thunk/ppb_uma_private_thunk.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// From private/ppb_uma_private.idl modified Thu Mar 13 11:54:51 2014.
+// From private/ppb_uma_private.idl modified Mon Apr 7 08:56:43 2014.
#include "ppapi/c/pp_completion_callback.h"
#include "ppapi/c/pp_errors.h"
@@ -27,11 +27,7 @@ void HistogramCustomTimes(PP_Instance instance,
EnterInstanceAPI<PPB_UMA_Singleton_API> enter(instance);
if (enter.failed())
return;
- enter.functions()->HistogramCustomTimes(instance,
- name,
- sample,
- min,
- max,
+ enter.functions()->HistogramCustomTimes(instance, name, sample, min, max,
bucket_count);
}
@@ -45,11 +41,7 @@ void HistogramCustomCounts(PP_Instance instance,
EnterInstanceAPI<PPB_UMA_Singleton_API> enter(instance);
if (enter.failed())
return;
- enter.functions()->HistogramCustomCounts(instance,
- name,
- sample,
- min,
- max,
+ enter.functions()->HistogramCustomCounts(instance, name, sample, min, max,
bucket_count);
}
@@ -61,9 +53,7 @@ void HistogramEnumeration(PP_Instance instance,
EnterInstanceAPI<PPB_UMA_Singleton_API> enter(instance);
if (enter.failed())
return;
- enter.functions()->HistogramEnumeration(instance,
- name,
- sample,
+ enter.functions()->HistogramEnumeration(instance, name, sample,
boundary_value);
}
@@ -73,17 +63,15 @@ int32_t IsCrashReportingEnabled(PP_Instance instance,
EnterInstanceAPI<PPB_UMA_Singleton_API> enter(instance, callback);
if (enter.failed())
return enter.retval();
- return enter.SetResult(enter.functions()->IsCrashReportingEnabled(
- instance,
- enter.callback()));
+ return enter.SetResult(
+ enter.functions()->IsCrashReportingEnabled(instance, enter.callback()));
}
const PPB_UMA_Private_0_3 g_ppb_uma_private_thunk_0_3 = {
- &HistogramCustomTimes,
- &HistogramCustomCounts,
- &HistogramEnumeration,
- &IsCrashReportingEnabled
-};
+ &HistogramCustomTimes,
+ &HistogramCustomCounts,
+ &HistogramEnumeration,
+ &IsCrashReportingEnabled};
} // namespace
« no previous file with comments | « ppapi/thunk/ppb_udp_socket_thunk.cc ('k') | ppapi/thunk/ppb_url_loader_thunk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698