Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Unified Diff: base/win/pe_image_unittest.cc

Issue 3836005: Move pe_image and registry from base to base/win and use the namespace. It re... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/win/pe_image.cc ('k') | base/win/registry.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « base/win/pe_image.cc ('k') | base/win/registry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698