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

Side by Side Diff: Source/core/inspector/v8/V8DebuggerImpl.h

Issue 1249013002: DevTools: simplify setScriptSource and restartFrame return values (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 void setPauseOnNextStatement(bool) override; 71 void setPauseOnNextStatement(bool) override;
72 bool pausingOnNextStatement() override; 72 bool pausingOnNextStatement() override;
73 bool canBreakProgram() override; 73 bool canBreakProgram() override;
74 void breakProgram() override; 74 void breakProgram() override;
75 void continueProgram() override; 75 void continueProgram() override;
76 void stepIntoStatement() override; 76 void stepIntoStatement() override;
77 void stepOverStatement() override; 77 void stepOverStatement() override;
78 void stepOutOfFunction() override; 78 void stepOutOfFunction() override;
79 void clearStepping() override; 79 void clearStepping() override;
80 80
81 bool setScriptSource(const String& sourceID, const String& newContent, bool preview, String* error, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>&, v8 ::Global<v8::Object>* newCallFrames, RefPtr<JSONObject>* result) override; 81 bool setScriptSource(const String& sourceID, const String& newContent, bool preview, String* error, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>&, v8 ::Global<v8::Object>* newCallFrames, TypeBuilder::OptOutput<bool>* stackChanged) override;
82 v8::Local<v8::Object> currentCallFrames() override; 82 v8::Local<v8::Object> currentCallFrames() override;
83 v8::Local<v8::Object> currentCallFramesForAsyncStack() override; 83 v8::Local<v8::Object> currentCallFramesForAsyncStack() override;
84 PassRefPtr<JavaScriptCallFrame> callFrameNoScopes(int index) override; 84 PassRefPtr<JavaScriptCallFrame> callFrameNoScopes(int index) override;
85 int frameCount() override; 85 int frameCount() override;
86 86
87 bool isPaused() override; 87 bool isPaused() override;
88 88
89 v8::Local<v8::Value> functionScopes(v8::Local<v8::Function>) override; 89 v8::Local<v8::Value> functionScopes(v8::Local<v8::Function>) override;
90 v8::Local<v8::Value> generatorObjectDetails(v8::Local<v8::Object>&) override ; 90 v8::Local<v8::Value> generatorObjectDetails(v8::Local<v8::Object>&) override ;
91 v8::Local<v8::Value> collectionEntries(v8::Local<v8::Object>&) override; 91 v8::Local<v8::Value> collectionEntries(v8::Local<v8::Object>&) override;
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 v8::UniquePersistent<v8::FunctionTemplate> m_callFrameWrapperTemplate; 128 v8::UniquePersistent<v8::FunctionTemplate> m_callFrameWrapperTemplate;
129 v8::Local<v8::Object> m_executionState; 129 v8::Local<v8::Object> m_executionState;
130 v8::Local<v8::Context> m_pausedContext; 130 v8::Local<v8::Context> m_pausedContext;
131 bool m_runningNestedMessageLoop; 131 bool m_runningNestedMessageLoop;
132 }; 132 };
133 133
134 } // namespace blink 134 } // namespace blink
135 135
136 136
137 #endif // V8DebuggerImpl_h 137 #endif // V8DebuggerImpl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698