summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp')
-rw-r--r--Source/WebCore/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/WebCore/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp b/Source/WebCore/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp
index f8b5e350d..62ee6bd11 100644
--- a/Source/WebCore/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp
+++ b/Source/WebCore/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp
@@ -44,22 +44,22 @@
namespace WebCore {
-v8::Handle<v8::Value> V8InspectorFrontendHost::platformCallback(const v8::Arguments&)
+v8::Handle<v8::Value> V8InspectorFrontendHost::platformCallback(const v8::Arguments& args)
{
#if defined(OS_MACOSX)
- return v8String("mac");
+ return v8String("mac", args.GetIsolate());
#elif defined(OS_LINUX)
- return v8String("linux");
+ return v8String("linux", args.GetIsolate());
#elif defined(OS_FREEBSD)
- return v8String("freebsd");
+ return v8String("freebsd", args.GetIsolate());
#elif defined(OS_OPENBSD)
- return v8String("openbsd");
+ return v8String("openbsd", args.GetIsolate());
#elif defined(OS_SOLARIS)
- return v8String("solaris");
+ return v8String("solaris", args.GetIsolate());
#elif defined(OS_WIN)
- return v8String("windows");
+ return v8String("windows", args.GetIsolate());
#else
- return v8String("unknown");
+ return v8String("unknown", args.GetIsolate());
#endif
}