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

Side by Side Diff: third_party/WebKit/Source/platform/instrumentation/PlatformTraceEventsAgent.h

Issue 2760363002: [instrumentation] Generalize instrumentation to be used beyond the core layer (Closed)
Patch Set: Created 3 years, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef PlatformTraceEventsAgent_h
6 #define PlatformTraceEventsAgent_h
7
8 #include "platform/PlatformExport.h"
9 #include "platform/heap/Heap.h"
10 #include "platform/instrumentation/tracing/TraceEvent.h"
11
12 namespace blink {
13
14 namespace probe {
15 class PlatformSendRequest;
16 }
17
18 class PLATFORM_EXPORT PlatformTraceEventsAgent
19 : public GarbageCollected<PlatformTraceEventsAgent> {
20 public:
21 DEFINE_INLINE_TRACE() {}
22
23 void will(const probe::PlatformSendRequest&);
24 void did(const probe::PlatformSendRequest&);
25 };
26
27 } // namespace blink
28
29 #endif // !defined(PlatformTraceEventsAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698