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

Unified Diff: tools/clang/plugins/Options.h

Issue 1665363002: Clang plugin to check that unstable types are not used in IPC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Blacklist types instead Created 4 years, 10 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: tools/clang/plugins/Options.h
diff --git a/tools/clang/plugins/Options.h b/tools/clang/plugins/Options.h
index bb5857f0d74ec688dc158367b24b0a1c7643d4c2..e6fc93e32dcc980d601df861c9b0f8ae96ea94ad 100644
--- a/tools/clang/plugins/Options.h
+++ b/tools/clang/plugins/Options.h
@@ -14,7 +14,8 @@ struct Options {
enforce_in_thirdparty_webkit(false),
check_enum_last_value(false),
with_ast_visitor(false),
- check_templates(false) {}
+ check_templates(false),
+ check_ipc(false) {}
bool check_base_classes;
bool enforce_in_pdf;
@@ -23,6 +24,7 @@ struct Options {
bool with_ast_visitor;
bool check_templates;
bool follow_macro_expansion = false;
+ bool check_ipc;
};
} // namespace chrome_checker

Powered by Google App Engine
This is Rietveld 408576698