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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8HiddenValue.h

Issue 2798063003: [Bindings] Remove V8HiddenValue (Closed)
Patch Set: remove files 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/bindings/core/v8/V8HiddenValue.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8HiddenValue.h b/third_party/WebKit/Source/bindings/core/v8/V8HiddenValue.h
deleted file mode 100644
index aa1ce0efe607c461363e791fee6d762689431f6c..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/bindings/core/v8/V8HiddenValue.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef V8HiddenValue_h
-#define V8HiddenValue_h
-
-#include <memory>
-
-#include "bindings/core/v8/ScopedPersistent.h"
-#include "bindings/core/v8/ScriptPromiseProperties.h"
-#include "core/CoreExport.h"
-#include "platform/wtf/Allocator.h"
-#include "platform/wtf/PtrUtil.h"
-#include "v8/include/v8.h"
-
-namespace blink {
-
-class ScriptState;
-
-class CORE_EXPORT V8HiddenValue {
- public:
- static v8::Local<v8::Value> GetHiddenValue(ScriptState*,
- v8::Local<v8::Object>,
- v8::Local<v8::String>);
- static bool SetHiddenValue(ScriptState*,
- v8::Local<v8::Object>,
- v8::Local<v8::String>,
- v8::Local<v8::Value>);
- static bool DeleteHiddenValue(ScriptState*,
- v8::Local<v8::Object>,
- v8::Local<v8::String>);
-};
-
-} // namespace blink
-
-#endif // V8HiddenValue_h

Powered by Google App Engine
This is Rietveld 408576698