| Index: webkit/plugins/npapi/webplugin_delegate_impl_win.cc
|
| ===================================================================
|
| --- webkit/plugins/npapi/webplugin_delegate_impl_win.cc (revision 90470)
|
| +++ webkit/plugins/npapi/webplugin_delegate_impl_win.cc (working copy)
|
| @@ -8,6 +8,7 @@
|
| #include <string>
|
| #include <vector>
|
|
|
| +#include "app/win/iat_patch_function.h"
|
| #include "base/file_util.h"
|
| #include "base/lazy_instance.h"
|
| #include "base/memory/scoped_ptr.h"
|
| @@ -18,7 +19,6 @@
|
| #include "base/string_util.h"
|
| #include "base/stringprintf.h"
|
| #include "base/version.h"
|
| -#include "base/win/iat_patch_function.h"
|
| #include "base/win/registry.h"
|
| #include "base/win/windows_version.h"
|
| #include "skia/ext/platform_canvas.h"
|
| @@ -75,15 +75,15 @@
|
|
|
|
|
| // Helper object for patching the TrackPopupMenu API.
|
| -base::LazyInstance<base::win::IATPatchFunction> g_iat_patch_track_popup_menu(
|
| +base::LazyInstance<app::win::IATPatchFunction> g_iat_patch_track_popup_menu(
|
| base::LINKER_INITIALIZED);
|
|
|
| // Helper object for patching the SetCursor API.
|
| -base::LazyInstance<base::win::IATPatchFunction> g_iat_patch_set_cursor(
|
| +base::LazyInstance<app::win::IATPatchFunction> g_iat_patch_set_cursor(
|
| base::LINKER_INITIALIZED);
|
|
|
| // Helper object for patching the RegEnumKeyExW API.
|
| -base::LazyInstance<base::win::IATPatchFunction> g_iat_patch_reg_enum_key_ex_w(
|
| +base::LazyInstance<app::win::IATPatchFunction> g_iat_patch_reg_enum_key_ex_w(
|
| base::LINKER_INITIALIZED);
|
|
|
| // http://crbug.com/16114
|
|
|