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

Unified Diff: sandbox/src/interception.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 | « sandbox/src/eat_resolver.cc ('k') | sandbox/src/policy_broker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/src/interception.cc
===================================================================
--- sandbox/src/interception.cc (revision 62848)
+++ sandbox/src/interception.cc (working copy)
@@ -10,8 +10,8 @@
#include "sandbox/src/interception.h"
#include "base/logging.h"
-#include "base/pe_image.h"
#include "base/scoped_ptr.h"
+#include "base/win/pe_image.h"
#include "sandbox/src/interception_internal.h"
#include "sandbox/src/interceptors.h"
#include "sandbox/src/sandbox.h"
@@ -411,7 +411,7 @@
if (!ntdll_base)
return false;
- PEImage ntdll_image(ntdll_base);
+ base::win::PEImage ntdll_image(ntdll_base);
// Bypass purify's interception.
wchar_t* loader_get = reinterpret_cast<wchar_t*>(
« no previous file with comments | « sandbox/src/eat_resolver.cc ('k') | sandbox/src/policy_broker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698