mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
AddUserTasks => setUserTasks
This commit is contained in:
@@ -189,8 +189,8 @@ mate::ObjectTemplateBuilder App::GetObjectTemplateBuilder(
|
||||
.SetMethod("clearRecentDocuments",
|
||||
base::Bind(&Browser::ClearRecentDocuments, browser))
|
||||
#if defined(OS_WIN)
|
||||
.SetMethod("addUserTasks",
|
||||
base::Bind(&Browser::AddUserTasks, browser))
|
||||
.SetMethod("setUserTasks",
|
||||
base::Bind(&Browser::SetUserTasks, browser))
|
||||
#endif
|
||||
.SetMethod("getDataPath", &App::GetDataPath)
|
||||
.SetMethod("resolveProxy", &App::ResolveProxy)
|
||||
|
||||
@@ -96,7 +96,7 @@ class Browser : public WindowListObserver {
|
||||
};
|
||||
|
||||
// Add a custom task to jump list.
|
||||
void AddUserTasks(const std::vector<UserTask>& tasks);
|
||||
void SetUserTasks(const std::vector<UserTask>& tasks);
|
||||
|
||||
// Set the application user model ID, called when "SetName" is called.
|
||||
void SetAppUserModelID(const std::string& name);
|
||||
|
||||
@@ -71,7 +71,7 @@ void Browser::ClearRecentDocuments() {
|
||||
destinations->RemoveAllDestinations();
|
||||
}
|
||||
|
||||
void Browser::AddUserTasks(const std::vector<UserTask>& tasks) {
|
||||
void Browser::SetUserTasks(const std::vector<UserTask>& tasks) {
|
||||
CComPtr<ICustomDestinationList> destinations;
|
||||
if (FAILED(destinations.CoCreateInstance(CLSID_DestinationList)))
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user