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

Unified Diff: Source/bindings/v8/ScriptController.cpp

Issue 19861006: Allow binding a getter+setter for window object property. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Allow binding a getter+setter for window object property. Created 7 years, 5 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: Source/bindings/v8/ScriptController.cpp
diff --git a/Source/bindings/v8/ScriptController.cpp b/Source/bindings/v8/ScriptController.cpp
index fcc59bac09c4d0f6944934c5e7b228838fdb1aaf..542862a1684ac73f42a094733ae929d40e6f7646 100644
--- a/Source/bindings/v8/ScriptController.cpp
+++ b/Source/bindings/v8/ScriptController.cpp
@@ -1,6 +1,7 @@
/*
* Copyright (C) 2008, 2009 Google Inc. All rights reserved.
* Copyright (C) 2009 Apple Inc. All rights reserved.
+ * Copyright (C) 2013 Opera Software ASA. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
@@ -361,6 +362,19 @@ void ScriptController::bindToWindowObject(Frame* frame, const String& key, NPObj
global->Set(v8String(key, v8Context->GetIsolate()), value);
}
+void ScriptController::bindToWindowObject(Frame* frame, const String &key, v8::AccessorGetter getter, v8::AccessorSetter setter, v8::Handle<v8::Value> data)
+{
+ v8::HandleScope handleScope;
+ v8::Handle<v8::Context> v8Context = ScriptController::mainWorldContext(frame);
+ if (v8Context.IsEmpty())
+ return;
+
+ v8::Context::Scope scope(v8Context);
+
+ v8::Handle<v8::Object> global = v8Context->Global();
+ global->SetAccessor(v8String(key, v8Context->GetIsolate()), getter, setter, data);
+}
+
void ScriptController::enableEval()
{
if (!m_windowShell->isContextInitialized())

Powered by Google App Engine
This is Rietveld 408576698