Index: tools/clang/BindMigrate/Util.h |
diff --git a/tools/clang/BindMigrate/Util.h b/tools/clang/BindMigrate/Util.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8a09915098bf679cdd1e168e65a4c5816257d7d2 |
--- /dev/null |
+++ b/tools/clang/BindMigrate/Util.h |
@@ -0,0 +1,17 @@ |
+// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef TOOLS_CLANG_BINDMIGRATE_UTIL_H_ |
+#define TOOLS_CLANG_BINDMIGRATE_UTIL_H_ |
+ |
+#include "clang/Basic/SourceManager.h" |
+ |
+namespace clang { |
+ |
+const FileEntry* GetValidFile(const SourceManager& source_manager, |
+ SourceLocation location); |
+ |
+} // namespace clang |
+ |
+#endif // TOOLS_CLANG_BINDMIGRATE_UTIL_H_ |