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

Unified Diff: sandbox/src/eat_resolver.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 | « net/proxy/proxy_config_service_win.cc ('k') | sandbox/src/interception.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/src/eat_resolver.cc
===================================================================
--- sandbox/src/eat_resolver.cc (revision 62848)
+++ sandbox/src/eat_resolver.cc (working copy)
@@ -4,7 +4,7 @@
#include "sandbox/src/eat_resolver.h"
-#include "base/pe_image.h"
+#include "base/win/pe_image.h"
#include "sandbox/src/sandbox_nt_util.h"
namespace sandbox {
@@ -64,7 +64,7 @@
if (!module)
return STATUS_INVALID_PARAMETER;
- PEImage pe(module);
+ base::win::PEImage pe(module);
if (!pe.VerifyMagic())
return STATUS_INVALID_IMAGE_FORMAT;
« no previous file with comments | « net/proxy/proxy_config_service_win.cc ('k') | sandbox/src/interception.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698