Merge pull request #19 from electron/get-wrapper-const

GetWrapper should be const
This commit is contained in:
Cheng Zhao 2018-02-20 10:07:55 +09:00 коммит произвёл GitHub
Родитель a38fb5df41 91ee99ab8a
Коммит 99d9e262eb
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -23,7 +23,7 @@ WrappableBase::~WrappableBase() {
wrapper_.Reset();
}
v8::Local<v8::Object> WrappableBase::GetWrapper() {
v8::Local<v8::Object> WrappableBase::GetWrapper() const {
if (!wrapper_.IsEmpty())
return v8::Local<v8::Object>::New(isolate_, wrapper_);
else

Просмотреть файл

@ -31,7 +31,7 @@ class WrappableBase {
virtual ~WrappableBase();
// Retrieve the v8 wrapper object cooresponding to this object.
v8::Local<v8::Object> GetWrapper();
v8::Local<v8::Object> GetWrapper() const;
// Returns the Isolate this object is created in.
v8::Isolate* isolate() const { return isolate_; }