Use correct param ordering in header file

This commit is contained in:
Kevin Sawicki 2017-01-04 17:28:50 -08:00
Родитель 1f08634d62
Коммит 222734b5f5
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -37,8 +37,8 @@ typedef base::Callback<void(int code)> MessageBoxCallback;
int ShowMessageBox(NativeWindow* parent_window,
MessageBoxType type,
const std::vector<std::string>& buttons,
int cancel_id,
int default_id,
int cancel_id,
int options,
const std::string& title,
const std::string& message,