Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / inspector / InjectedScript.h
index 6523846..b9f6ea8 100644 (file)
@@ -31,7 +31,7 @@
 #ifndef InjectedScript_h
 #define InjectedScript_h
 
-#include "bindings/v8/ScriptValue.h"
+#include "bindings/core/v8/ScriptValue.h"
 #include "core/InspectorTypeBuilder.h"
 #include "core/inspector/InjectedScriptBase.h"
 #include "core/inspector/InjectedScriptManager.h"
@@ -39,7 +39,7 @@
 #include "wtf/Forward.h"
 #include "wtf/Vector.h"
 
-namespace WebCore {
+namespace blink {
 
 class InjectedScriptModule;
 class Node;
@@ -58,7 +58,8 @@ public:
         bool returnByValue,
         bool generatePreview,
         RefPtr<TypeBuilder::Runtime::RemoteObject>* result,
-        TypeBuilder::OptOutput<bool>* wasThrown);
+        TypeBuilder::OptOutput<bool>* wasThrown,
+        RefPtr<TypeBuilder::Debugger::ExceptionDetails>*);
     void callFunctionOn(
         ErrorString*,
         const String& objectId,
@@ -79,7 +80,8 @@ public:
         bool returnByValue,
         bool generatePreview,
         RefPtr<TypeBuilder::Runtime::RemoteObject>* result,
-        TypeBuilder::OptOutput<bool>* wasThrown);
+        TypeBuilder::OptOutput<bool>* wasThrown,
+        RefPtr<TypeBuilder::Debugger::ExceptionDetails>*);
     void restartFrame(ErrorString*, const ScriptValue& callFrames, const String& callFrameId, RefPtr<JSONObject>* result);
     void getStepInPositions(ErrorString*, const ScriptValue& callFrames, const String& callFrameId, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location> >& positions);
     void setVariableValue(ErrorString*, const ScriptValue& callFrames, const String* callFrameIdOpt, const String* functionObjectIdOpt, int scopeNumber, const String& variableName, const String& newValueStr);
@@ -108,6 +110,6 @@ private:
 };
 
 
-} // namespace WebCore
+} // namespace blink
 
 #endif