diff options
Diffstat (limited to 'webkit/glue/chrome_client_impl.cc')
-rw-r--r-- | webkit/glue/chrome_client_impl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/chrome_client_impl.cc b/webkit/glue/chrome_client_impl.cc index ff8aeb5..6341f55 100644 --- a/webkit/glue/chrome_client_impl.cc +++ b/webkit/glue/chrome_client_impl.cc @@ -25,7 +25,7 @@ MSVC_PUSH_WARNING_LEVEL(0); #include "ScriptController.h" #include "WindowFeatures.h" #if USE(V8) -#include "v8_proxy.h" +#include "V8Proxy.h" #endif MSVC_POP_WARNING(); @@ -361,7 +361,7 @@ void ChromeClientImpl::runJavaScriptAlert(WebCore::Frame* frame, #if USE(V8) // Before showing the JavaScript dialog, we give the proxy implementation // a chance to process any pending console messages. - WebCore::V8Proxy::ProcessConsoleMessages(); + WebCore::V8Proxy::processConsoleMessages(); #endif std::wstring wstr = webkit_glue::StringToStdWString(message); |