Fix Revert of 89054 so it builds on win_shared

TEST=builds on win_shared
BUG=none

Review URL: http://codereview.chromium.org/7167001

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89096 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder.cc b/gpu/command_buffer/service/gles2_cmd_decoder.cc
index 10b1229..7a8158672 100644
--- a/gpu/command_buffer/service/gles2_cmd_decoder.cc
+++ b/gpu/command_buffer/service/gles2_cmd_decoder.cc
@@ -2709,7 +2709,7 @@
   error::Error result = error::kNoError;
   if (debug()) {
     // TODO(gman): Change output to something useful for NaCl.
-    DVLOG(1) << "cmd: " << GetCommandName(command);
+    DLOG(INFO) << "[" << this << "]" << "cmd: " << GetCommandName(command);
   }
   unsigned int command_index = command - kStartPoint - 1;
   if (command_index < arraysize(g_command_info)) {
@@ -2735,7 +2735,8 @@
         while ((error = glGetError()) != GL_NO_ERROR) {
           // TODO(gman): Change output to something useful for NaCl.
           SetGLError(error, NULL);
-          DVLOG(1) << "GL ERROR: " << error << " : " << GetCommandName(command);
+          DLOG(INFO) << "[" << this << "]"
+              << "GL ERROR: " << error << " : " << GetCommandName(command);
         }
       }
     } else {