Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(291)

Unified Diff: runtime/bin/extensions_win.cc

Issue 11567010: Complete the transition to unicode APIs on Windows. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/bin/process_win.cc » ('j') | runtime/platform/globals.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/extensions_win.cc
diff --git a/runtime/bin/extensions_win.cc b/runtime/bin/extensions_win.cc
index 52edf59d59da26a43a61b3ece1b2447db87d688e..1fb7004a84ed5ac09b4d3630b201b089d741613c 100644
--- a/runtime/bin/extensions_win.cc
+++ b/runtime/bin/extensions_win.cc
@@ -3,12 +3,15 @@
// BSD-style license that can be found in the LICENSE file.
#include "bin/extensions.h"
+#include "bin/utils.h"
void* Extensions::LoadExtensionLibrary(const char* library_path,
const char* extension_name) {
const char* strings[] = { library_path, "/", extension_name, ".dll", NULL };
char* library_file = Concatenate(strings);
- void* lib_handle = LoadLibrary(library_file);
+ wchar_t* unicode_library_file = StringUtils::Utf8ToWide(library_file);
+ void* lib_handle = LoadLibraryW(unicode_library_file);
+ delete(unicode_library_file);
free(library_file);
return lib_handle;
}
« no previous file with comments | « no previous file | runtime/bin/process_win.cc » ('j') | runtime/platform/globals.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698