Fix some typos when WEBCORE_INSTRUMENTATION is on.
diff --git a/WebCore/bindings/v8/V8Proxy.cpp b/WebCore/bindings/v8/V8Proxy.cpp
index e2c1e98..1cfafb8 100644
--- a/WebCore/bindings/v8/V8Proxy.cpp
+++ b/WebCore/bindings/v8/V8Proxy.cpp
@@ -396,12 +396,12 @@
 #ifdef ANDROID_INSTRUMENT
 {
     android::TimeCounter::start(android::TimeCounter::JavaScriptExecuteTimeCounter);
-    v8::Local<v8::Value> result = runScriptInternal(script, inline_code);
+    v8::Local<v8::Value> result = runScriptInternal(script, isInlineCode);
     android::TimeCounter::record(android::TimeCounter::JavaScriptExecuteTimeCounter, __FUNCTION__);
     return result;
 }
 
-v8::Local<v8::Value> V8Proxy::runScriptInternal(v8::Handle<v8::Script> script, bool inline_code)
+v8::Local<v8::Value> V8Proxy::runScriptInternal(v8::Handle<v8::Script> script, bool isInlineCode)
 #endif
 {
     if (script.IsEmpty())
diff --git a/WebCore/bindings/v8/V8Proxy.h b/WebCore/bindings/v8/V8Proxy.h
index d2c0181..d8f546c 100644
--- a/WebCore/bindings/v8/V8Proxy.h
+++ b/WebCore/bindings/v8/V8Proxy.h
@@ -227,7 +227,7 @@
         v8::Local<v8::Value> runScript(v8::Handle<v8::Script>, bool isInlineCode);
 
 #ifdef ANDROID_INSTRUMENT
-        v8::Local<v8::Value> RunScriptInternal(v8::Handle<v8::Script> script, bool inline_code);
+        v8::Local<v8::Value> runScriptInternal(v8::Handle<v8::Script> script, bool inline_code);
 #endif
 
         // Call the function with the given receiver and arguments.
@@ -309,7 +309,7 @@
         static v8::Handle<v8::Script> compileScript(v8::Handle<v8::String> code, const String& fileName, int baseLine);
 
 #ifdef ANDROID_INSTRUMENT
-        static v8::Handle<v8::Script> CompileScriptInternal(v8::Handle<v8::String> code, const String& fileName, int baseLine);
+        static v8::Handle<v8::Script> compileScriptInternal(v8::Handle<v8::String> code, const String& fileName, int baseLine);
 #endif
 
         // If the exception code is different from zero, a DOM exception is