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

Unified Diff: include/utils/SkEventTracer.h

Issue 145973011: clean up a couple of parameters in the tracing interface (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 11 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
« no previous file with comments | « no previous file | src/utils/SkEventTracer.cpp » ('j') | src/utils/SkEventTracer.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/utils/SkEventTracer.h
diff --git a/include/utils/SkEventTracer.h b/include/utils/SkEventTracer.h
index 1d9ba3792b24a12a8dca5dff7b2826d5dfdc78b6..f0e2a5580c5f317f0bf10bd68295c8de76773c47 100644
--- a/include/utils/SkEventTracer.h
+++ b/include/utils/SkEventTracer.h
@@ -49,7 +49,7 @@ public:
kEnabledForEventCallback_CategoryGroupEnabledFlags = 1 << 2,
};
- virtual const unsigned char* getCategoryGroupEnabled(const char* name) = 0;
+ virtual const uint8_t* getCategoryGroupEnabled(const char* name) = 0;
virtual const char* getCategoryGroupName(
const uint8_t* category_group_enabled) = 0;
@@ -67,7 +67,7 @@ public:
virtual void
updateTraceEventDuration(const uint8_t* categoryEnabledFlag,
const char* name,
- SkEventTracer::Handle) = 0;
+ SkEventTracer::Handle handle) = 0;
private:
static SkEventTracer *gInstance;
};
« no previous file with comments | « no previous file | src/utils/SkEventTracer.cpp » ('j') | src/utils/SkEventTracer.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698