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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.cpp

Issue 2251343003: [DevTools] Generate separate copies of inspector_protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: win compile Created 4 years, 4 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
Index: third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.cpp
diff --git a/third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.cpp b/third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.cpp
index 573b14a9e8c20b246fde3f3c047ac29fcab791a4..87dd2d404eaf71961445dfd220d14d6a2434dd7c 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.cpp
+++ b/third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.cpp
@@ -30,8 +30,8 @@
#include "platform/v8_inspector/JavaScriptCallFrame.h"
+#include "platform/v8_inspector/StringUtil.h"
#include "platform/v8_inspector/V8Compat.h"
-#include "platform/v8_inspector/V8StringUtil.h"
#include <v8-debug.h>
@@ -127,7 +127,7 @@ v8::MaybeLocal<v8::Value> JavaScriptCallFrame::setVariableValue(int scopeNumber,
variableName,
newValue
};
- return setVariableValueFunction->Call(m_debuggerContext.Get(m_isolate), callFrame, PROTOCOL_ARRAY_LENGTH(argv), argv);
+ return setVariableValueFunction->Call(m_debuggerContext.Get(m_isolate), callFrame, V8_INSPECTOR_ARRAY_LENGTH(argv), argv);
}
} // namespace v8_inspector

Powered by Google App Engine
This is Rietveld 408576698