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

Unified Diff: third_party/WebKit/Source/core/inspector/V8InspectorString.h

Issue 2490473004: [DevTools] Roll third_party/inspector_protocol to e23134c5aa6131e5a3a3afbefce255becce3a3bd. (Closed)
Patch Set: ui_devtools Created 4 years, 1 month 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/core/inspector/V8InspectorString.h
diff --git a/third_party/WebKit/Source/core/inspector/V8InspectorString.h b/third_party/WebKit/Source/core/inspector/V8InspectorString.h
index 86072d03d80f63b2332325c33ae416368e61ed05..bb2274e9e11f2aa677ec270cbfdfb04d5de713e6 100644
--- a/third_party/WebKit/Source/core/inspector/V8InspectorString.h
+++ b/third_party/WebKit/Source/core/inspector/V8InspectorString.h
@@ -8,6 +8,7 @@
#include "core/CoreExport.h"
#include "platform/Decimal.h"
#include "wtf/Allocator.h"
+#include "wtf/Assertions.h"
#include "wtf/text/StringBuilder.h"
#include "wtf/text/StringHash.h"
#include "wtf/text/StringView.h"
@@ -48,10 +49,9 @@ class CORE_EXPORT StringUtil {
static void builderReserve(StringBuilder& builder, unsigned capacity) {
builder.reserveCapacity(capacity);
}
+ static std::unique_ptr<protocol::Value> parseJSON(const String&);
};
-CORE_EXPORT std::unique_ptr<protocol::Value> parseJSON(const String&);
-
} // namespace protocol
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698