1 // Copyright (c) 2012 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 TOOLS_CLANG_PLUGINS_OPTIONS_H_
6 #define TOOLS_CLANG_PLUGINS_OPTIONS_H_
7 
8 namespace chrome_checker {
9 
10 struct Options {
11   bool check_base_classes = false;
12   bool check_ipc = false;
13   bool check_gmock_objects = false;
14 };
15 
16 }  // namespace chrome_checker
17 
18 #endif  // TOOLS_CLANG_PLUGINS_OPTIONS_H_
19