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

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

Issue 2066793003: Revert "Implement script-side of callback reactions for Custom Elements V1" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/core/v8/V8Binding.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8Binding.h b/third_party/WebKit/Source/bindings/core/v8/V8Binding.h
index d8a4231d49bc4a00fb14322593f0000467233fea..f18e9c4a9ed0bc5ad2d016ae31ccb8b69524a40d 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8Binding.h
+++ b/third_party/WebKit/Source/bindings/core/v8/V8Binding.h
@@ -414,13 +414,6 @@ inline v8::Local<v8::Value> v8StringOrNull(v8::Isolate* isolate, const AtomicStr
return V8PerIsolateData::from(isolate)->getStringCache()->v8ExternalString(isolate, string.impl());
}
-inline v8::Local<v8::Value> v8StringOrNull(v8::Isolate* isolate, const AtomicString& string)
-{
- if (string.isNull())
- return v8::Null(isolate);
- return V8PerIsolateData::from(isolate)->getStringCache()->v8ExternalString(isolate, string.impl());
-}
-
inline v8::Local<v8::String> v8String(v8::Isolate* isolate, const CompressibleString& string)
{
if (string.isNull())
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698