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

Side by Side Diff: Source/core/inspector/JavaScriptCallFrame.h

Issue 333153003: DevTools: Revert stepping over/out on a call frame backend code. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2010, Google Inc. All rights reserved. 2 * Copyright (c) 2010, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 v8::Handle<v8::Value> scopeChain() const; 62 v8::Handle<v8::Value> scopeChain() const;
63 int scopeType(int scopeIndex) const; 63 int scopeType(int scopeIndex) const;
64 v8::Handle<v8::Value> thisObject() const; 64 v8::Handle<v8::Value> thisObject() const;
65 String stepInPositions() const; 65 String stepInPositions() const;
66 bool isAtReturn() const; 66 bool isAtReturn() const;
67 v8::Handle<v8::Value> returnValue() const; 67 v8::Handle<v8::Value> returnValue() const;
68 68
69 v8::Handle<v8::Value> evaluate(const String& expression); 69 v8::Handle<v8::Value> evaluate(const String& expression);
70 v8::Handle<v8::Value> restart(); 70 v8::Handle<v8::Value> restart();
71 ScriptValue setVariableValue(ScriptState*, int scopeNumber, const String& va riableName, const ScriptValue& newValue); 71 ScriptValue setVariableValue(ScriptState*, int scopeNumber, const String& va riableName, const ScriptValue& newValue);
72 v8::Handle<v8::Object> innerCallFrame();
73 72
74 private: 73 private:
75 JavaScriptCallFrame(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8:: Object> callFrame); 74 JavaScriptCallFrame(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8:: Object> callFrame);
76 75
77 int callV8FunctionReturnInt(const char* name) const; 76 int callV8FunctionReturnInt(const char* name) const;
78 String callV8FunctionReturnString(const char* name) const; 77 String callV8FunctionReturnString(const char* name) const;
79 78
80 v8::Isolate* m_isolate; 79 v8::Isolate* m_isolate;
81 RefPtrWillBeMember<JavaScriptCallFrame> m_caller; 80 RefPtrWillBeMember<JavaScriptCallFrame> m_caller;
82 ScopedPersistent<v8::Context> m_debuggerContext; 81 ScopedPersistent<v8::Context> m_debuggerContext;
83 ScopedPersistent<v8::Object> m_callFrame; 82 ScopedPersistent<v8::Object> m_callFrame;
84 }; 83 };
85 84
86 } // namespace WebCore 85 } // namespace WebCore
87 86
88 87
89 #endif // JavaScriptCallFrame_h 88 #endif // JavaScriptCallFrame_h
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.cpp ('k') | Source/core/inspector/JavaScriptCallFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698