| Index: ui/android/display_android.h
|
| diff --git a/tools/clang/plugins/tests/missing_ctor_ignored_base.cpp b/ui/android/display_android.h
|
| similarity index 54%
|
| copy from tools/clang/plugins/tests/missing_ctor_ignored_base.cpp
|
| copy to ui/android/display_android.h
|
| index 6c4ddd4fc6c4a27e9721be91971255bd6f8bfd15..84b90486b1a117f083d1e2bc7a303015f65bdf99 100644
|
| --- a/tools/clang/plugins/tests/missing_ctor_ignored_base.cpp
|
| +++ b/ui/android/display_android.h
|
| @@ -2,10 +2,13 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "missing_ctor_ignored_base.h"
|
| +#include <jni.h>
|
|
|
| -int main() {
|
| - MissingCtorsWithIgnoredBase one;
|
| - MissingCtorsWithIgnoredGrandBase two;
|
| - return 0;
|
| -}
|
| +namespace ui {
|
| +
|
| +class DisplayAndroid {
|
| + public:
|
| + static bool RegisterDisplayAndroid(JNIEnv* env);
|
| +};
|
| +
|
| +} // namespace ui
|
|
|