| Index: base/win/pe_image_unittest.cc
|
| ===================================================================
|
| --- base/win/pe_image_unittest.cc (revision 62848)
|
| +++ base/win/pe_image_unittest.cc (working copy)
|
| @@ -5,9 +5,12 @@
|
| // This file contains unit tests for PEImage.
|
|
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| -#include "base/pe_image.h"
|
| +#include "base/win/pe_image.h"
|
| #include "base/win/windows_version.h"
|
|
|
| +namespace base {
|
| +namespace win {
|
| +
|
| // Just counts the number of invocations.
|
| bool ExportsCallback(const PEImage &image,
|
| DWORD ordinal,
|
| @@ -211,3 +214,6 @@
|
|
|
| FreeLibrary(module);
|
| }
|
| +
|
| +} // namespace win
|
| +} // namespace base
|
|
|