| Index: chrome_frame/buggy_bho_handling.cc
|
| diff --git a/chrome_frame/buggy_bho_handling.cc b/chrome_frame/buggy_bho_handling.cc
|
| index 227c99968f74747a553c5b6799c326a01e278b84..65dac03282f039bca47c8cac3a9e3fd5ff75afa0 100644
|
| --- a/chrome_frame/buggy_bho_handling.cc
|
| +++ b/chrome_frame/buggy_bho_handling.cc
|
| @@ -5,6 +5,7 @@
|
| #include "chrome_frame/buggy_bho_handling.h"
|
|
|
| #include "base/logging.h"
|
| +#include "base/process_util.h"
|
| #include "base/win/scoped_comptr.h"
|
|
|
| #include "chrome_frame/exception_barrier.h"
|
| @@ -155,7 +156,7 @@ HRESULT BuggyBhoTls::PatchBuggyBHOs(IWebBrowser2* browser) {
|
| bool BuggyBhoTls::PatchIfBuggy(IUnknown* unk, const IID& diid) {
|
| DCHECK(unk);
|
| PROC* methods = *reinterpret_cast<PROC**>(unk);
|
| - HMODULE mod = GetModuleFromAddress(methods[0]);
|
| + HMODULE mod = base::GetModuleFromAddress(methods[0]);
|
| if (!IsBuggyBho(mod))
|
| return false;
|
|
|
|
|