revert accidental overbeautification
This commit is contained in:
parent
24ab5075e7
commit
ed717a9b45
1 changed files with 60 additions and 70 deletions
|
@ -52,8 +52,7 @@ void AutoUpdater::OnError(const std::string& message) {
|
|||
isolate(),
|
||||
GetWrapper(),
|
||||
"error",
|
||||
error->ToObject(
|
||||
isolate()->GetCurrentContext()).ToLocalChecked(),
|
||||
error->ToObject(isolate()->GetCurrentContext()).ToLocalChecked(),
|
||||
message);
|
||||
}
|
||||
|
||||
|
@ -61,8 +60,7 @@ void AutoUpdater::OnError(const std::string& message,
|
|||
const int code, const std::string& domain) {
|
||||
v8::Locker locker(isolate());
|
||||
v8::HandleScope handle_scope(isolate());
|
||||
auto error = v8::Exception::Error(
|
||||
mate::StringToV8(isolate(), message));
|
||||
auto error = v8::Exception::Error(mate::StringToV8(isolate(), message));
|
||||
auto errorObject = error->ToObject(
|
||||
isolate()->GetCurrentContext()).ToLocalChecked();
|
||||
|
||||
|
@ -72,12 +70,7 @@ void AutoUpdater::OnError(const std::string& message,
|
|||
errorObject->Set(mate::StringToV8(isolate(), "domain"),
|
||||
mate::StringToV8(isolate(), domain));
|
||||
|
||||
mate::EmitEvent(
|
||||
isolate(),
|
||||
GetWrapper(),
|
||||
"error",
|
||||
errorObject,
|
||||
message);
|
||||
mate::EmitEvent(isolate(), GetWrapper(), "error", errorObject, message);
|
||||
}
|
||||
|
||||
void AutoUpdater::OnCheckingForUpdate() {
|
||||
|
@ -97,8 +90,7 @@ void AutoUpdater::OnUpdateDownloaded(const std::string& release_notes,
|
|||
const base::Time& release_date,
|
||||
const std::string& url) {
|
||||
Emit("update-downloaded", release_notes, release_name, release_date,
|
||||
url, base::Bind(&AutoUpdater::QuitAndInstall,
|
||||
base::Unretained(this)));
|
||||
url, base::Bind(&AutoUpdater::QuitAndInstall, base::Unretained(this)));
|
||||
}
|
||||
|
||||
void AutoUpdater::OnWindowAllClosed() {
|
||||
|
@ -133,8 +125,7 @@ void AutoUpdater::BuildPrototype(
|
|||
v8::Isolate* isolate, v8::Local<v8::FunctionTemplate> prototype) {
|
||||
prototype->SetClassName(mate::StringToV8(isolate, "AutoUpdater"));
|
||||
mate::ObjectTemplateBuilder(isolate, prototype->PrototypeTemplate())
|
||||
.SetMethod("checkForUpdates",
|
||||
&auto_updater::AutoUpdater::CheckForUpdates)
|
||||
.SetMethod("checkForUpdates", &auto_updater::AutoUpdater::CheckForUpdates)
|
||||
.SetMethod("getFeedURL", &auto_updater::AutoUpdater::GetFeedURL)
|
||||
.SetMethod("setFeedURL", &AutoUpdater::SetFeedURL)
|
||||
.SetMethod("quitAndInstall", &AutoUpdater::QuitAndInstall);
|
||||
|
@ -154,8 +145,7 @@ void Initialize(v8::Local<v8::Object> exports, v8::Local<v8::Value> unused,
|
|||
v8::Isolate* isolate = context->GetIsolate();
|
||||
mate::Dictionary dict(isolate, exports);
|
||||
dict.Set("autoUpdater", AutoUpdater::Create(isolate));
|
||||
dict.Set("AutoUpdater",
|
||||
AutoUpdater::GetConstructor(isolate)->GetFunction());
|
||||
dict.Set("AutoUpdater", AutoUpdater::GetConstructor(isolate)->GetFunction());
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
|
Loading…
Reference in a new issue