Index: third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp |
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp |
index 3e0db33d1b335fbccba86665e5bdd0ac83533a6a..6f46aa45f6ed8ff27081995587480cfe6d088d71 100644 |
--- a/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp |
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp |
@@ -709,9 +709,8 @@ bool V8Debugger::isCommandLineAPIMethod(const String16& name) |
{ |
DEFINE_STATIC_LOCAL(protocol::HashSet<String16>, methods, ()); |
if (methods.size() == 0) { |
- const char* members[] = { "dir", "dirxml", "keys", "values", "profile", "profileEnd", |
- "monitorEvents", "unmonitorEvents", "inspect", "copy", "clear", "getEventListeners", |
- "debug", "undebug", "monitor", "unmonitor", "table" }; |
+ const char* members[] = { "dir", "dirxml", "keys", "values", "profile", "profileEnd", "inspect", |
+ "copy", "clear", "getEventListeners", "debug", "undebug", "monitor", "unmonitor", "table" }; |
for (size_t i = 0; i < WTF_ARRAY_LENGTH(members); ++i) |
methods.add(members[i]); |
} |