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

Unified Diff: src/inspector/JavaScriptCallFrame.cpp

Issue 2359533002: [inspector] replaced V8_INSPECTOR* macros with macros from base/macros.h (Closed)
Patch Set: Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/inspector/JavaScriptCallFrame.h ('k') | src/inspector/StringUtil.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/inspector/JavaScriptCallFrame.cpp
diff --git a/src/inspector/JavaScriptCallFrame.cpp b/src/inspector/JavaScriptCallFrame.cpp
index 6ee803899c64610f002b8104707918289a0c8383..3a3b6ea402984b8026f42849e5ab0a088664631f 100644
--- a/src/inspector/JavaScriptCallFrame.cpp
+++ b/src/inspector/JavaScriptCallFrame.cpp
@@ -155,8 +155,8 @@ v8::MaybeLocal<v8::Value> JavaScriptCallFrame::setVariableValue(
v8::Local<v8::Value> argv[] = {
v8::Local<v8::Value>(v8::Integer::New(m_isolate, scopeNumber)),
variableName, newValue};
- return setVariableValueFunction->Call(context, callFrame,
- V8_INSPECTOR_ARRAY_LENGTH(argv), argv);
+ return setVariableValueFunction->Call(context, callFrame, arraysize(argv),
+ argv);
}
} // namespace v8_inspector
« no previous file with comments | « src/inspector/JavaScriptCallFrame.h ('k') | src/inspector/StringUtil.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698