| Index: runtime/bin/file_system_watcher_win.cc
|
| diff --git a/runtime/bin/file_system_watcher_win.cc b/runtime/bin/file_system_watcher_win.cc
|
| index f0b71f1c3225fea4a94c716eb116884cd46ff477..98642ab46a6585923c714ff4e442499feb17865e 100644
|
| --- a/runtime/bin/file_system_watcher_win.cc
|
| +++ b/runtime/bin/file_system_watcher_win.cc
|
| @@ -13,6 +13,7 @@
|
| #include "bin/builtin.h"
|
| #include "bin/log.h"
|
| #include "bin/utils.h"
|
| +#include "bin/utils_win.h"
|
|
|
|
|
| namespace dart {
|
| @@ -38,7 +39,7 @@ intptr_t FileSystemWatcher::WatchPath(intptr_t id,
|
| int events,
|
| bool recursive) {
|
| USE(id);
|
| - const wchar_t* name = StringUtils::Utf8ToWide(path);
|
| + const wchar_t* name = StringUtilsWin::Utf8ToWide(path);
|
| HANDLE dir = CreateFileW(name,
|
| FILE_LIST_DIRECTORY,
|
| FILE_SHARE_READ |
|
|
|