1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_RENDERER_EXTENSIONS_SCOPED_PERSISTENT_H_
6 #define CHROME_RENDERER_EXTENSIONS_SCOPED_PERSISTENT_H_
8 #include "base/logging.h"
9 #include "v8/include/v8.h"
11 namespace extensions
{
13 // A v8::Persistent handle to a V8 value which destroys and clears the
14 // underlying handle on destruction.
16 class ScopedPersistent
{
21 explicit ScopedPersistent(v8::Handle
<T
> handle
) {
29 void reset(v8::Handle
<T
> handle
) {
30 if (!handle
.IsEmpty())
31 handle_
.Reset(GetIsolate(handle
), handle
);
40 bool IsEmpty() const {
41 return handle_
.IsEmpty();
44 v8::Handle
<T
> NewHandle() const {
45 if (handle_
.IsEmpty())
46 return v8::Local
<T
>();
47 return v8::Local
<T
>::New(GetIsolate(handle_
), handle_
);
50 v8::Handle
<T
> NewHandle(v8::Isolate
* isolate
) const {
51 if (handle_
.IsEmpty())
52 return v8::Local
<T
>();
53 return v8::Local
<T
>::New(isolate
, handle_
);
57 void SetWeak(P
* parameters
,
58 typename
v8::WeakCallbackData
<T
, P
>::Callback callback
) {
59 handle_
.SetWeak(parameters
, callback
);
64 static v8::Isolate
* GetIsolate(v8::Handle
<U
> object_handle
) {
65 // Only works for v8::Object and its subclasses. Add specialisations for
67 if (!object_handle
.IsEmpty())
68 return GetIsolate(object_handle
->CreationContext());
69 return v8::Isolate::GetCurrent();
71 static v8::Isolate
* GetIsolate(v8::Handle
<v8::Context
> context_handle
) {
72 if (!context_handle
.IsEmpty())
73 return context_handle
->GetIsolate();
74 return v8::Isolate::GetCurrent();
76 static v8::Isolate
* GetIsolate(
77 v8::Handle
<v8::ObjectTemplate
> template_handle
) {
78 return v8::Isolate::GetCurrent();
81 v8::Persistent
<T
> handle_
;
83 DISALLOW_COPY_AND_ASSIGN(ScopedPersistent
);
86 } // namespace extensions
88 #endif // CHROME_RENDERER_EXTENSIONS_SCOPED_PERSISTENT_H_