| Index: tools/clang/plugins/FindBadConstructsAction.cpp
|
| diff --git a/tools/clang/plugins/FindBadConstructsAction.cpp b/tools/clang/plugins/FindBadConstructsAction.cpp
|
| index 812508410ec3e6245df4c05538fe0ac93662bde6..0f6fbd5d61d5d81270a277f51a564d0030a9580f 100644
|
| --- a/tools/clang/plugins/FindBadConstructsAction.cpp
|
| +++ b/tools/clang/plugins/FindBadConstructsAction.cpp
|
| @@ -49,6 +49,11 @@ bool FindBadConstructsAction::ParseArgs(const CompilerInstance& instance,
|
| if (args[i] == "check-base-classes") {
|
| // TODO(rsleevi): Remove this once http://crbug.com/123295 is fixed.
|
| options_.check_base_classes = true;
|
| + } else if (args[i] == "enforce-overriding-blink") {
|
| + options_.enforce_overriding_blink = true;
|
| + } else if (args[i] == "enforce-in-thirdparty-webkit") {
|
| + options_.enforce_in_thirdparty_webkit = true;
|
| + options_.enforce_overriding_blink = true;
|
| } else if (args[i] == "check-enum-last-value") {
|
| // TODO(tsepez): Enable this by default once http://crbug.com/356815
|
| // and http://crbug.com/356816 are fixed.
|
|
|