Index: Source/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp b/Source/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp |
index 070963e87e62fc1baaea0670d03846e74983d2e4..1a1b2725af018a0748cfba836e215c1307918eaa 100644 |
--- a/Source/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp |
+++ b/Source/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp |
@@ -45,16 +45,10 @@ void V8InspectorFrontendHost::platformMethodCustom(const v8::FunctionCallbackInf |
{ |
#if OS(MACOSX) |
v8SetReturnValue(args, v8::String::NewSymbol("mac")); |
-#elif OS(LINUX) |
- v8SetReturnValue(args, v8::String::NewSymbol("linux")); |
-#elif OS(FREEBSD) |
- v8SetReturnValue(args, v8::String::NewSymbol("freebsd")); |
-#elif OS(OPENBSD) |
- v8SetReturnValue(args, v8::String::NewSymbol("openbsd")); |
#elif OS(WIN) |
v8SetReturnValue(args, v8::String::NewSymbol("windows")); |
-#else |
- v8SetReturnValue(args, v8::String::NewSymbol("unknown")); |
+#else // Unix-like systems |
+ v8SetReturnValue(args, v8::String::NewSymbol("linux")); |
#endif |
} |