| Index: third_party/WebKit/Source/core/inspector/v8/V8FunctionCall.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptFunctionCall.h b/third_party/WebKit/Source/core/inspector/v8/V8FunctionCall.h
|
| similarity index 91%
|
| rename from third_party/WebKit/Source/bindings/core/v8/ScriptFunctionCall.h
|
| rename to third_party/WebKit/Source/core/inspector/v8/V8FunctionCall.h
|
| index 5fed2b07848b9d0a95dda705a199e4fc21725f49..8a47f0e948f0af74e542ba8a43e0f90454fc7920 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ScriptFunctionCall.h
|
| +++ b/third_party/WebKit/Source/core/inspector/v8/V8FunctionCall.h
|
| @@ -28,8 +28,8 @@
|
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| -#ifndef ScriptFunctionCall_h
|
| -#define ScriptFunctionCall_h
|
| +#ifndef V8FunctionCall_h
|
| +#define V8FunctionCall_h
|
|
|
| #include "wtf/Vector.h"
|
| #include "wtf/text/WTFString.h"
|
| @@ -39,10 +39,10 @@ namespace blink {
|
|
|
| class V8DebuggerClient;
|
|
|
| -class ScriptFunctionCall {
|
| +class V8FunctionCall {
|
| STACK_ALLOCATED();
|
| public:
|
| - ScriptFunctionCall(V8DebuggerClient*, v8::Local<v8::Context>, v8::Local<v8::Value>, const String& name);
|
| + V8FunctionCall(V8DebuggerClient*, v8::Local<v8::Context>, v8::Local<v8::Value>, const String& name);
|
|
|
| void appendArgument(v8::Local<v8::Value>);
|
| void appendArgument(const String&);
|
| @@ -66,4 +66,4 @@ protected:
|
|
|
| } // namespace blink
|
|
|
| -#endif // ScriptFunctionCall
|
| +#endif // V8FunctionCall
|
|
|