Added GLSL backend for ESSL translator.
Review URL: http://codereview.appspot.com/698041

git-svn-id: https://angleproject.googlecode.com/svn/trunk@69 736b8ea6-26fd-11df-bfd4-992fa37f6226
diff --git a/src/compiler/Link.cpp b/src/compiler/Link.cpp
index 9f5819b..80f22ac 100644
--- a/src/compiler/Link.cpp
+++ b/src/compiler/Link.cpp
@@ -16,10 +16,9 @@
 //
 class TGenericLinker : public TLinker {
 public:
-    TGenericLinker(EShExecutable e, int dOptions) : TLinker(e, infoSink), debugOptions(dOptions) { }
+    TGenericLinker(EShExecutable e, int dOptions) : TLinker(e), debugOptions(dOptions) { }
     bool link(TCompilerList&, TUniformMap*) { return true; }
-	void getAttributeBindings(ShBindingTable const **t) const { }
-    TInfoSink infoSink;
+    void getAttributeBindings(ShBindingTable const **t) const { }
     int debugOptions;
 };