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

Unified Diff: src/inspector/V8DebuggerAgentImpl.cpp

Issue 2292053003: [inspector] Build inspector under v8_enable_inspector build flag. (Closed)
Patch Set: owners 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
Index: src/inspector/V8DebuggerAgentImpl.cpp
diff --git a/src/inspector/V8DebuggerAgentImpl.cpp b/src/inspector/V8DebuggerAgentImpl.cpp
index 6063e560c736e882097ad7d1ef1965453698045a..58bcd610c3cdcf163be85753bffea2f7de8b9380 100644
--- a/src/inspector/V8DebuggerAgentImpl.cpp
+++ b/src/inspector/V8DebuggerAgentImpl.cpp
@@ -19,7 +19,8 @@
#include "src/inspector/V8RuntimeAgentImpl.h"
#include "src/inspector/V8StackTraceImpl.h"
#include "src/inspector/protocol/Protocol.h"
-#include "src/inspector/public/V8InspectorClient.h"
+
+#include "include/v8-inspector.h"
#include <algorithm>
@@ -215,7 +216,7 @@ void V8DebuggerAgentImpl::restore() {
String16 blackboxPattern;
if (m_state->getString(DebuggerAgentState::blackboxPattern,
&blackboxPattern)) {
- if (!setBlackboxPattern(&error, blackboxPattern)) NOTREACHED();
+ if (!setBlackboxPattern(&error, blackboxPattern)) UNREACHABLE();
}
}

Powered by Google App Engine
This is Rietveld 408576698