blob: 6bf831696b0c1d5787fa3619fb8372e0fe5f18cd [file] [log] [blame]
[email protected]a22998a2013-11-10 05:00:501// 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.
4
[email protected]c07006b2013-11-20 03:01:445#include "gin/public/wrapper_info.h"
[email protected]a22998a2013-11-10 05:00:506
7namespace gin {
8
9WrapperInfo* WrapperInfo::From(v8::Handle<v8::Object> object) {
10 if (object->InternalFieldCount() != kNumberOfInternalFields)
11 return NULL;
[email protected]a17807242013-11-20 21:59:5312 WrapperInfo* info = static_cast<WrapperInfo*>(
[email protected]a22998a2013-11-10 05:00:5013 object->GetAlignedPointerFromInternalField(kWrapperInfoIndex));
[email protected]a17807242013-11-20 21:59:5314 return info->embedder == kEmbedderNativeGin ? info : NULL;
[email protected]a22998a2013-11-10 05:00:5015}
16
17} // namespace gin