Index: trunk/debugger/SkDebugger.h |
=================================================================== |
--- trunk/debugger/SkDebugger.h (revision 7896) |
+++ trunk/debugger/SkDebugger.h (working copy) |
@@ -12,6 +12,7 @@ |
#include "SkDebugCanvas.h" |
#include "SkPicture.h" |
robertphillips
2013/03/07 22:19:11
probably only need "class SkString;" here
borenet
2013/03/08 13:00:26
Done.
|
+#include "SkString.h" |
#include "SkTArray.h" |
class SkDebugger { |
@@ -105,6 +106,7 @@ |
} |
} |
+ void getOverviewText(const SkTDArray<double>* typeTimes, double totTime, SkString& overview); |
borenet
2013/03/07 21:38:08
Better to modify a passed-in string in place, or t
djsollen
2013/03/07 21:50:22
modify in place.
djsollen
2013/03/07 21:50:22
modify in place if you can initially alloc more th
borenet
2013/03/08 13:00:26
In a future CL I'll estimate the right size to all
|
private: |
SkDebugCanvas* fDebugCanvas; |