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

Unified Diff: Source/bindings/core/v8/EvaluateExceptionDetailsFactory.h

Issue 289423002: DevTools: added injectedScript.evaluateWithDetails, that return exception details if it occured (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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: Source/bindings/core/v8/EvaluateExceptionDetailsFactory.h
diff --git a/Source/bindings/core/v8/EvaluateExceptionDetailsFactory.h b/Source/bindings/core/v8/EvaluateExceptionDetailsFactory.h
new file mode 100644
index 0000000000000000000000000000000000000000..c2949bf3985c3e1bf8cf34b153c9de854560c522
--- /dev/null
+++ b/Source/bindings/core/v8/EvaluateExceptionDetailsFactory.h
@@ -0,0 +1,16 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef EvaluateExceptionDetailsFactory_h
+#define EvaluateExceptionDetailsFactory_h
+
+#include <v8.h>
+
+namespace WebCore {
+
+v8::Handle<v8::Object> createEvaluateExceptionDetails(v8::Handle<v8::Message>, v8::Isolate*);
+
+} // namespace WebCore
+
+#endif // EvaluateExceptionDetailsFactory_h

Powered by Google App Engine
This is Rietveld 408576698