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

Unified Diff: third_party/WebKit/Source/core/inspector/v8/V8FunctionCall.h

Issue 1648523002: DevTools: move InjectedScript* to inspector/v8. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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: 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

Powered by Google App Engine
This is Rietveld 408576698