Pull protocol resolution of out ActOnStartClassInterface, this is also the 
last client of the old ParseObjCProtocolReferences, so it also removes it.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54094 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Sema/Sema.h b/lib/Sema/Sema.h
index 9584dcc..09d8d79 100644
--- a/lib/Sema/Sema.h
+++ b/lib/Sema/Sema.h
@@ -605,13 +605,15 @@
   
 
   // Objective-C declarations.
-  virtual DeclTy *ActOnStartClassInterface(
-                    SourceLocation AtInterafceLoc,
-                    IdentifierInfo *ClassName, SourceLocation ClassLoc,
-                    IdentifierInfo *SuperName, SourceLocation SuperLoc,
-                    const IdentifierLocPair *ProtocolNames,
-                    unsigned NumProtocols,
-                    SourceLocation EndProtoLoc, AttributeList *AttrList);
+  virtual DeclTy *ActOnStartClassInterface(SourceLocation AtInterfaceLoc,
+                                           IdentifierInfo *ClassName,
+                                           SourceLocation ClassLoc,
+                                           IdentifierInfo *SuperName,
+                                           SourceLocation SuperLoc,
+                                           DeclTy * const *ProtoRefs,
+                                           unsigned NumProtoRefs,
+                                           SourceLocation EndProtoLoc,
+                                           AttributeList *AttrList);
   
   virtual DeclTy *ActOnCompatiblityAlias(
                     SourceLocation AtCompatibilityAliasLoc,