OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 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 CHROME_COMMON_TRACE_EVENT_ARGS_WHITELIST_H_ | |
6 #define CHROME_COMMON_TRACE_EVENT_ARGS_WHITELIST_H_ | |
7 | |
8 namespace chrome { | |
jam
2015/05/20 15:30:18
nit: using "chrome" namespace is deprecated. as ch
oystein (OOO til 10th of July)
2015/05/20 21:25:01
Done.
| |
9 | |
10 bool IsTraceEventArgsWhitelisted(const char* category_group_name, | |
jam
2015/05/20 15:30:18
nit: add brief comment about what this method is u
oystein (OOO til 10th of July)
2015/05/20 21:25:01
Done.
| |
11 const char* event_name); | |
12 | |
13 } // namespace chrome | |
14 | |
15 #endif // CHROME_COMMON_TRACE_EVENT_ARGS_WHITELIST_H_ | |
OLD | NEW |