Index: skia/ext/skia_commit_hash.h |
diff --git a/tools/clang/plugins/tests/missing_ctor_ignored_base.cpp b/skia/ext/skia_commit_hash.h |
similarity index 55% |
copy from tools/clang/plugins/tests/missing_ctor_ignored_base.cpp |
copy to skia/ext/skia_commit_hash.h |
index 6c4ddd4fc6c4a27e9721be91971255bd6f8bfd15..90ed38877aab39bdfcc6ec071f2de2e85b453ee8 100644 |
--- a/tools/clang/plugins/tests/missing_ctor_ignored_base.cpp |
+++ b/skia/ext/skia_commit_hash.h |
@@ -2,10 +2,11 @@ |
// 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" |
+#ifndef SKIA_EXT_SKIA_COMMIT_HASH_H_ |
+#define SKIA_EXT_SKIA_COMMIT_HASH_H_ |
-int main() { |
- MissingCtorsWithIgnoredBase one; |
- MissingCtorsWithIgnoredGrandBase two; |
- return 0; |
+namespace skia { |
+const char* CommitHash(); |
} |
+ |
+#endif |