| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "platform/v8_inspector/V8Console.h" | 5 #include "platform/v8_inspector/V8Console.h" |
| 6 | 6 |
| 7 #include "platform/inspector_protocol/String16.h" | 7 #include "platform/inspector_protocol/String16.h" |
| 8 #include "platform/v8_inspector/InjectedScript.h" | 8 #include "platform/v8_inspector/InjectedScript.h" |
| 9 #include "platform/v8_inspector/InspectedContext.h" | 9 #include "platform/v8_inspector/InspectedContext.h" |
| 10 #include "platform/v8_inspector/V8Compat.h" | 10 #include "platform/v8_inspector/V8Compat.h" |
| (...skipping 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 } | 703 } |
| 704 | 704 |
| 705 void V8Console::clearInspectedContextIfNeeded(v8::Local<v8::Context> context, v8
::Local<v8::Object> console) | 705 void V8Console::clearInspectedContextIfNeeded(v8::Local<v8::Context> context, v8
::Local<v8::Object> console) |
| 706 { | 706 { |
| 707 v8::Isolate* isolate = context->GetIsolate(); | 707 v8::Isolate* isolate = context->GetIsolate(); |
| 708 console->SetPrivate(context, inspectedContextPrivateKey(isolate), v8::Extern
al::New(isolate, nullptr)); | 708 console->SetPrivate(context, inspectedContextPrivateKey(isolate), v8::Extern
al::New(isolate, nullptr)); |
| 709 } | 709 } |
| 710 | 710 |
| 711 bool V8Debugger::isCommandLineAPIMethod(const String16& name) | 711 bool V8Debugger::isCommandLineAPIMethod(const String16& name) |
| 712 { | 712 { |
| 713 DEFINE_STATIC_LOCAL(protocol::HashSet<String16>, methods, ()); | 713 static protocol::HashSet<String16> methods; |
| 714 if (methods.size() == 0) { | 714 if (methods.size() == 0) { |
| 715 const char* members[] = { "dir", "dirxml", "keys", "values", "profile",
"profileEnd", "inspect", | 715 const char* members[] = { "dir", "dirxml", "keys", "values", "profile",
"profileEnd", "inspect", |
| 716 "copy", "clear", "debug", "undebug", "monitor", "unmonitor", "table"
}; | 716 "copy", "clear", "debug", "undebug", "monitor", "unmonitor", "table"
}; |
| 717 for (size_t i = 0; i < WTF_ARRAY_LENGTH(members); ++i) | 717 for (size_t i = 0; i < PROTOCOL_ARRAY_LENGTH(members); ++i) |
| 718 methods.add(members[i]); | 718 methods.add(members[i]); |
| 719 } | 719 } |
| 720 return methods.find(name) != methods.end(); | 720 return methods.find(name) != methods.end(); |
| 721 } | 721 } |
| 722 | 722 |
| 723 bool V8Debugger::isCommandLineAPIGetter(const String16& name) | 723 bool V8Debugger::isCommandLineAPIGetter(const String16& name) |
| 724 { | 724 { |
| 725 DEFINE_STATIC_LOCAL(protocol::HashSet<String16>, getters, ()); | 725 static protocol::HashSet<String16> getters; |
| 726 if (getters.size() == 0) { | 726 if (getters.size() == 0) { |
| 727 const char* members[] = { "$0", "$1", "$2", "$3", "$4", "$_" }; | 727 const char* members[] = { "$0", "$1", "$2", "$3", "$4", "$_" }; |
| 728 for (size_t i = 0; i < WTF_ARRAY_LENGTH(members); ++i) | 728 for (size_t i = 0; i < PROTOCOL_ARRAY_LENGTH(members); ++i) |
| 729 getters.add(members[i]); | 729 getters.add(members[i]); |
| 730 } | 730 } |
| 731 return getters.find(name) != getters.end(); | 731 return getters.find(name) != getters.end(); |
| 732 } | 732 } |
| 733 | 733 |
| 734 } // namespace blink | 734 } // namespace blink |
| OLD | NEW |