Index: chrome_frame/utils.cc |
diff --git a/chrome_frame/utils.cc b/chrome_frame/utils.cc |
index cb4f0c07102010347a3e14d9ac306f6b950f1297..ba411671abd8698ac55b642f3352feda02c2d41e 100644 |
--- a/chrome_frame/utils.cc |
+++ b/chrome_frame/utils.cc |
@@ -542,12 +542,6 @@ bool GetModuleVersion(HMODULE module, uint32* high, uint32* low) { |
return ok; |
} |
-HMODULE GetModuleFromAddress(void* address) { |
- MEMORY_BASIC_INFORMATION info = {0}; |
- ::VirtualQuery(address, &info, sizeof(info)); |
- return reinterpret_cast<HMODULE>(info.AllocationBase); |
-} |
- |
namespace { |
const int kMaxSubmenuDepth = 10; |