Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Side by Side Diff: third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp

Issue 1999843002: [DevTools] Move CommandLineAPI.getEventListeners to native (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move-monitor-events-to-native
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
703 { 703 {
704 v8::Isolate* isolate = context->GetIsolate(); 704 v8::Isolate* isolate = context->GetIsolate();
705 console->SetPrivate(context, inspectedContextPrivateKey(isolate), v8::Extern al::New(isolate, nullptr)); 705 console->SetPrivate(context, inspectedContextPrivateKey(isolate), v8::Extern al::New(isolate, nullptr));
706 } 706 }
707 707
708 bool V8Debugger::isCommandLineAPIMethod(const String16& name) 708 bool V8Debugger::isCommandLineAPIMethod(const String16& name)
709 { 709 {
710 DEFINE_STATIC_LOCAL(protocol::HashSet<String16>, methods, ()); 710 DEFINE_STATIC_LOCAL(protocol::HashSet<String16>, methods, ());
711 if (methods.size() == 0) { 711 if (methods.size() == 0) {
712 const char* members[] = { "dir", "dirxml", "keys", "values", "profile", "profileEnd", "inspect", 712 const char* members[] = { "dir", "dirxml", "keys", "values", "profile", "profileEnd", "inspect",
713 "copy", "clear", "getEventListeners", "debug", "undebug", "monitor", "unmonitor", "table" }; 713 "copy", "clear", "debug", "undebug", "monitor", "unmonitor", "table" };
714 for (size_t i = 0; i < WTF_ARRAY_LENGTH(members); ++i) 714 for (size_t i = 0; i < WTF_ARRAY_LENGTH(members); ++i)
715 methods.add(members[i]); 715 methods.add(members[i]);
716 } 716 }
717 return methods.find(name) != methods.end(); 717 return methods.find(name) != methods.end();
718 } 718 }
719 719
720 bool V8Debugger::isCommandLineAPIGetter(const String16& name) 720 bool V8Debugger::isCommandLineAPIGetter(const String16& name)
721 { 721 {
722 DEFINE_STATIC_LOCAL(protocol::HashSet<String16>, getters, ()); 722 DEFINE_STATIC_LOCAL(protocol::HashSet<String16>, getters, ());
723 if (getters.size() == 0) { 723 if (getters.size() == 0) {
724 const char* members[] = { "$0", "$1", "$2", "$3", "$4", "$_" }; 724 const char* members[] = { "$0", "$1", "$2", "$3", "$4", "$_" };
725 for (size_t i = 0; i < WTF_ARRAY_LENGTH(members); ++i) 725 for (size_t i = 0; i < WTF_ARRAY_LENGTH(members); ++i)
726 getters.add(members[i]); 726 getters.add(members[i]);
727 } 727 }
728 return getters.find(name) != getters.end(); 728 return getters.find(name) != getters.end();
729 } 729 }
730 730
731 } // namespace blink 731 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698