Index: Source/core/inspector/InspectorDOMDebuggerAgent.cpp |
diff --git a/Source/core/inspector/InspectorDOMDebuggerAgent.cpp b/Source/core/inspector/InspectorDOMDebuggerAgent.cpp |
index d8c48701a710fbdebf80f0f7ba6ce635095ad503..b3f7b142453387f53ca0b910319511b60f14d197 100644 |
--- a/Source/core/inspector/InspectorDOMDebuggerAgent.cpp |
+++ b/Source/core/inspector/InspectorDOMDebuggerAgent.cpp |
@@ -49,8 +49,8 @@ enum DOMBreakpointType { |
DOMBreakpointTypesCount |
}; |
-static const char* const listenerEventCategoryType = "listener:"; |
-static const char* const instrumentationEventCategoryType = "instrumentation:"; |
+static const char listenerEventCategoryType[] = "listener:"; |
+static const char instrumentationEventCategoryType[] = "instrumentation:"; |
const uint32_t inheritableDOMBreakpointTypesMask = (1 << SubtreeModified); |
const int domBreakpointDerivedTypeShift = 16; |
@@ -59,15 +59,15 @@ const int domBreakpointDerivedTypeShift = 16; |
namespace WebCore { |
-static const char* const requestAnimationFrameEventName = "requestAnimationFrame"; |
-static const char* const cancelAnimationFrameEventName = "cancelAnimationFrame"; |
-static const char* const animationFrameFiredEventName = "animationFrameFired"; |
-static const char* const setTimerEventName = "setTimer"; |
-static const char* const clearTimerEventName = "clearTimer"; |
-static const char* const timerFiredEventName = "timerFired"; |
-static const char* const webglErrorFiredEventName = "webglErrorFired"; |
-static const char* const webglWarningFiredEventName = "webglWarningFired"; |
-static const char* const webglErrorNameProperty = "webglErrorName"; |
+static const char requestAnimationFrameEventName[] = "requestAnimationFrame"; |
+static const char cancelAnimationFrameEventName[] = "cancelAnimationFrame"; |
+static const char animationFrameFiredEventName[] = "animationFrameFired"; |
+static const char setTimerEventName[] = "setTimer"; |
+static const char clearTimerEventName[] = "clearTimer"; |
+static const char timerFiredEventName[] = "timerFired"; |
+static const char webglErrorFiredEventName[] = "webglErrorFired"; |
+static const char webglWarningFiredEventName[] = "webglWarningFired"; |
+static const char webglErrorNameProperty[] = "webglErrorName"; |
namespace DOMDebuggerAgentState { |
static const char eventListenerBreakpoints[] = "eventListenerBreakpoints"; |