Hooked up the new preprocessor behind a compile-time flag ANGLE_USE_NEW_PREPROCESSOR.
Review URL: https://codereview.appspot.com/6304095

git-svn-id: https://angleproject.googlecode.com/svn/trunk@1158 736b8ea6-26fd-11df-bfd4-992fa37f6226
diff --git a/src/compiler/DirectiveHandler.h b/src/compiler/DirectiveHandler.h
index 9d8fefd..21d3dfc 100644
--- a/src/compiler/DirectiveHandler.h
+++ b/src/compiler/DirectiveHandler.h
@@ -21,7 +21,7 @@
     virtual ~TDirectiveHandler();
 
     const TPragma& pragma() const { return mPragma; }
-    const TExtensionBehavior& extBehavior() const { return mExtBehavior; }
+    const TExtensionBehavior& extensionBehavior() const { return mExtensionBehavior; }
 
     virtual void handleError(const pp::SourceLocation& loc,
                              const std::string& msg);
@@ -39,7 +39,7 @@
 
   private:
     TPragma mPragma;
-    TExtensionBehavior& mExtBehavior;
+    TExtensionBehavior& mExtensionBehavior;
     TDiagnostics& mDiagnostics;
 };