Version 0.2.9.8.9

Merge revision 16322 to trunk.

This makes the use of a unicode method explicit on Windows.
Review URL: https://codereview.chromium.org//11571062

git-svn-id: http://dart.googlecode.com/svn/trunk@16323 260f80e4-7a28-3924-810f-c04153c831b5
diff --git a/runtime/bin/process_win.cc b/runtime/bin/process_win.cc
index e333a5e..65cc7e6 100644
--- a/runtime/bin/process_win.cc
+++ b/runtime/bin/process_win.cc
@@ -338,7 +338,7 @@
 static bool EnsureInitialized() {
   static bool load_attempted = false;
   static dart::Mutex mutex;
-  HMODULE kernel32_module = GetModuleHandle(L"kernel32.dll");
+  HMODULE kernel32_module = GetModuleHandleW(L"kernel32.dll");
   if (!load_attempted) {
     MutexLocker locker(&mutex);
     if (load_attempted) return delete_proc_thread_attr_list != NULL;
diff --git a/tools/VERSION b/tools/VERSION
index 82d4638..1502503 100644
--- a/tools/VERSION
+++ b/tools/VERSION
@@ -1,4 +1,4 @@
 MAJOR 0
 MINOR 2
 BUILD 9
-PATCH 8
+PATCH 9