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

Side by Side Diff: Source/core/platform/PlatformInstrumentation.cpp

Issue 46663010: DevTools: Show GPU utilization bar on timeline (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 24 matching lines...) Expand all
35 namespace WebCore { 35 namespace WebCore {
36 36
37 const char PlatformInstrumentation::CategoryName[] = "webkit"; 37 const char PlatformInstrumentation::CategoryName[] = "webkit";
38 38
39 const char PlatformInstrumentation::ImageDecodeEvent[] = "Decode Image"; 39 const char PlatformInstrumentation::ImageDecodeEvent[] = "Decode Image";
40 const char PlatformInstrumentation::ImageResizeEvent[] = "Resize Image"; 40 const char PlatformInstrumentation::ImageResizeEvent[] = "Resize Image";
41 const char PlatformInstrumentation::DrawLazyPixelRefEvent[] = "Draw LazyPixelRef "; 41 const char PlatformInstrumentation::DrawLazyPixelRefEvent[] = "Draw LazyPixelRef ";
42 42
43 const char PlatformInstrumentation::LazyPixelRef[] = "LazyPixelRef"; 43 const char PlatformInstrumentation::LazyPixelRef[] = "LazyPixelRef";
44 44
45 const char PlatformInstrumentation::GpuTask[] = "GpuTask";
46 const char PlatformInstrumentation::GpuTaskRendererPid[] = "renderer_pid";
yurys 2013/10/31 15:06:52 Please be consistent with the event naming style a
alph 2013/10/31 16:58:00 Done. rendererPid
47
45 const char PlatformInstrumentation::ImageTypeArgument[] = "imageType"; 48 const char PlatformInstrumentation::ImageTypeArgument[] = "imageType";
46 const char PlatformInstrumentation::CachedArgument[] = "cached"; 49 const char PlatformInstrumentation::CachedArgument[] = "cached";
47 50
48 PlatformInstrumentationClient* PlatformInstrumentation::m_client; 51 PlatformInstrumentationClient* PlatformInstrumentation::m_client;
49 52
50 PlatformInstrumentationClient::~PlatformInstrumentationClient() 53 PlatformInstrumentationClient::~PlatformInstrumentationClient()
51 { 54 {
52 } 55 }
53 56
54 void PlatformInstrumentation::setClient(PlatformInstrumentationClient* client) 57 void PlatformInstrumentation::setClient(PlatformInstrumentationClient* client)
55 { 58 {
56 m_client = client; 59 m_client = client;
57 } 60 }
58 61
59 } 62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698