This commit is contained in:
Cheng Zhao 2016-04-25 10:40:19 +09:00
Родитель 272592415d
Коммит 9fe3dbcfe0
6 изменённых файлов: 6 добавлений и 6 удалений

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

@ -442,7 +442,7 @@ void App::OnCertificateManagerModelCreated(
// static
mate::Handle<App> App::Create(v8::Isolate* isolate) {
return CreateHandle(isolate, new App(isolate));
return mate::CreateHandle(isolate, new App(isolate));
}
// static

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

@ -95,7 +95,7 @@ void AutoUpdater::QuitAndInstall() {
// static
mate::Handle<AutoUpdater> AutoUpdater::Create(v8::Isolate* isolate) {
return CreateHandle(isolate, new AutoUpdater(isolate));
return mate::CreateHandle(isolate, new AutoUpdater(isolate));
}
// static

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

@ -69,7 +69,7 @@ void GlobalShortcut::UnregisterAll() {
// static
mate::Handle<GlobalShortcut> GlobalShortcut::Create(v8::Isolate* isolate) {
return CreateHandle(isolate, new GlobalShortcut(isolate));
return mate::CreateHandle(isolate, new GlobalShortcut(isolate));
}
// static

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

@ -47,7 +47,7 @@ v8::Local<v8::Value> PowerMonitor::Create(v8::Isolate* isolate) {
return v8::Null(isolate);
}
return CreateHandle(isolate, new PowerMonitor(isolate)).ToV8();
return mate::CreateHandle(isolate, new PowerMonitor(isolate)).ToV8();
}
// static

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

@ -100,7 +100,7 @@ bool PowerSaveBlocker::IsStarted(int id) {
// static
mate::Handle<PowerSaveBlocker> PowerSaveBlocker::Create(v8::Isolate* isolate) {
return CreateHandle(isolate, new PowerSaveBlocker(isolate));
return mate::CreateHandle(isolate, new PowerSaveBlocker(isolate));
}
// static

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

@ -50,7 +50,7 @@ bool Event::SendReply(const base::string16& json) {
// static
Handle<Event> Event::Create(v8::Isolate* isolate) {
return CreateHandle(isolate, new Event(isolate));
return mate::CreateHandle(isolate, new Event(isolate));
}
// static