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

Unified Diff: chrome/common/trace_event_args_whitelist.h

Issue 1115343002: Added a whitelist for trace events that are known to be PII-less. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review fixes Created 5 years, 7 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
Index: chrome/common/trace_event_args_whitelist.h
diff --git a/chrome/common/trace_event_args_whitelist.h b/chrome/common/trace_event_args_whitelist.h
new file mode 100644
index 0000000000000000000000000000000000000000..1f61f9751dcc863c079030f6f7c100b988b2d920
--- /dev/null
+++ b/chrome/common/trace_event_args_whitelist.h
@@ -0,0 +1,13 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_COMMON_TRACE_EVENT_ARGS_WHITELIST_H_
+#define CHROME_COMMON_TRACE_EVENT_ARGS_WHITELIST_H_
+
+// Used to filter trace event arguments against a whitelist of events that
+// have been manually vetted to not include any PII.
+bool IsTraceEventArgsWhitelisted(const char* category_group_name,
+ const char* event_name);
+
+#endif // CHROME_COMMON_TRACE_EVENT_ARGS_WHITELIST_H_

Powered by Google App Engine
This is Rietveld 408576698