Index: third_party/WebKit/Source/core/inspector/DebuggerScript.h |
diff --git a/third_party/WebKit/Source/web/WebFrameImplBase.cpp b/third_party/WebKit/Source/core/inspector/DebuggerScript.h |
similarity index 56% |
copy from third_party/WebKit/Source/web/WebFrameImplBase.cpp |
copy to third_party/WebKit/Source/core/inspector/DebuggerScript.h |
index 6254074681885d19249a93557f0afa9b89b28fca..defba6ff34540fffa206be334d535900be94326d 100644 |
--- a/third_party/WebKit/Source/web/WebFrameImplBase.cpp |
+++ b/third_party/WebKit/Source/core/inspector/DebuggerScript.h |
@@ -2,19 +2,16 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "config.h" |
-#include "web/WebFrameImplBase.h" |
+#ifndef DebuggerScript_h |
+#define DebuggerScript_h |
-#include "platform/heap/Handle.h" |
+#include <v8.h> |
namespace blink { |
-WebFrameImplBase::~WebFrameImplBase() |
-{ |
-} |
- |
-DEFINE_TRACE(WebFrameImplBase) |
-{ |
-} |
+v8::Local<v8::Object> compileDebuggerScript(v8::Isolate*); |
} // namespace blink |
+ |
+ |
+#endif // !defined(DebuggerScript_h) |