blob: 0a22d97b73cd9c7c9fcd5bb4e85a98830885381b [file] [log] [blame]
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "gin/interceptor.h"
#include <stdint.h>
#include <map>
namespace gin {
v8::Local<v8::Value> NamedPropertyInterceptor::GetNamedProperty(
v8::Isolate* isolate,
const std::string& property) {
return v8::Local<v8::Value>();
}
bool NamedPropertyInterceptor::SetNamedProperty(v8::Isolate* isolate,
const std::string& property,
v8::Local<v8::Value> value) {
return false;
}
std::vector<std::string> NamedPropertyInterceptor::EnumerateNamedProperties(
v8::Isolate* isolate) {
return std::vector<std::string>();
}
} // namespace gin