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

Unified Diff: third_party/WebKit/Source/platform/bindings/ScriptState.h

Issue 2843603002: Move ScriptWrappable and dependencies to platform/bindings (Closed)
Patch Set: Rebase and try again Created 3 years, 8 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/platform/bindings/ScriptState.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptState.h b/third_party/WebKit/Source/platform/bindings/ScriptState.h
similarity index 97%
copy from third_party/WebKit/Source/bindings/core/v8/ScriptState.h
copy to third_party/WebKit/Source/platform/bindings/ScriptState.h
index ba02bfadb083055fa0ab4262d98c8dffee0ad1fd..0d76acb1ee7cb0e4eb95fd45dd020151b1eeff2d 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptState.h
+++ b/third_party/WebKit/Source/platform/bindings/ScriptState.h
@@ -7,9 +7,9 @@
#include <memory>
-#include "bindings/core/v8/ScopedPersistent.h"
-#include "bindings/core/v8/V8PerContextData.h"
-#include "core/CoreExport.h"
+#include "platform/PlatformExport.h"
+#include "platform/bindings/ScopedPersistent.h"
+#include "platform/bindings/V8PerContextData.h"
#include "platform/wtf/RefCounted.h"
#include "v8/include/v8-debug.h"
#include "v8/include/v8.h"
@@ -64,7 +64,7 @@ class ScriptValue;
// ScriptState is created when v8::Context is created.
// ScriptState is destroyed when v8::Context is garbage-collected and
// all V8 proxy objects that have references to the ScriptState are destructed.
-class CORE_EXPORT ScriptState : public RefCounted<ScriptState> {
+class PLATFORM_EXPORT ScriptState : public RefCounted<ScriptState> {
WTF_MAKE_NONCOPYABLE(ScriptState);
public:

Powered by Google App Engine
This is Rietveld 408576698