Coding style fix for SourceFileCallbacks



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@182930 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/unittests/Tooling/ToolingTest.cpp b/unittests/Tooling/ToolingTest.cpp
index a7b9431..d96366d 100644
--- a/unittests/Tooling/ToolingTest.cpp
+++ b/unittests/Tooling/ToolingTest.cpp
@@ -133,12 +133,12 @@
 
 struct VerifyEndCallback : public SourceFileCallbacks {
   VerifyEndCallback() : BeginCalled(0), EndCalled(0), Matched(false) {}
-  virtual bool BeginSource(CompilerInstance &CI,
-                           StringRef Filename) LLVM_OVERRIDE {
+  virtual bool handleBeginSource(CompilerInstance &CI,
+                                 StringRef Filename) LLVM_OVERRIDE {
     ++BeginCalled;
     return true;
   }
-  virtual void EndSource() {
+  virtual void handleEndSource() {
     ++EndCalled;
   }
   ASTConsumer *newASTConsumer() {